Closed EvilNiqht closed 1 year ago
https://github.com/SDClowen/SDUI/blob/1eab72be44050f47dd02d12ff39007c810f2e798/SDUI/Controls/TextBox.cs#L100
Aşağıdaki kodlar eklenirse çok tatlı olur şifre girilirken yada bakmak için ayrı ayrı gizle göster butonlarını eklemeye ve basmaya gerek kalmaz;
private bool _passFocusShow = false; public bool PassFocusShow { get { return _passFocusShow; } set { _passFocusShow = value; Invalidate(); } } protected override void OnEnter(System.EventArgs e) { if (UseSystemPasswordChar && PassFocusShow) _textBox.UseSystemPasswordChar = false; } protected override void OnLeave(System.EventArgs e) { if (UseSystemPasswordChar && PassFocusShow) _textBox.UseSystemPasswordChar = UseSystemPasswordChar; }
Eklendi. Katkınız için teşekkürler.
https://github.com/SDClowen/SDUI/blob/1eab72be44050f47dd02d12ff39007c810f2e798/SDUI/Controls/TextBox.cs#L100
Aşağıdaki kodlar eklenirse çok tatlı olur şifre girilirken yada bakmak için ayrı ayrı gizle göster butonlarını eklemeye ve basmaya gerek kalmaz;