Aşağıdaki örnek TextBox nesnelerinde focus kullanımını göstermektedir. Varsayılan form özelliklerinde focus bulunmamaktadır. Focus özelliği için Control özelliklerinin GotFocus(odaklandığında) ve LostFocus(ayrıldığında) özelliklerine fonksiyon atamaları yapılarak bu işlem sağlamaktadır.
Aşağdaki örnekte bir textbox ve bir tane label nesnesi kullanılmıştır. Formun load’ı ile Form sınıfına aşağıdaki kodlar yazılmıştır.
C# Kod:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | private void textBox1_GotFocus(Object sender, EventArgs e) { label1.Text = "textbox1'e girildi"; } private void textBox1_LostFocus(Object sender, EventArgs e) { label1.Text = "textbox1'den ayrıldı"; } public Form1() { InitializeComponent(); textBox1.GotFocus += textBox1_GotFocus; textBox1.LostFocus += textBox1_LostFocus; } |
Yorum Yap