void SorguDoldur() { txt_Sorgu.AutoCompleteCustomSource.Clear(); if (comboBox_Kriter.SelectedIndex == 0) { txt_Sorgu.AutoCompleteCustomSource.AddRange(KullaniciProvider.GetAllTC().ToArray()); } else { txt_Sorgu.AutoCompleteCustomSource.AddRange(KullaniciProvider.GetAllDosyaNo().ToArray()); } txt_Sorgu.Text = ""; txt_Sorgu.Focus(); }
public KullaniciIslemleri() { InitializeComponent(); txt_Sorgu.AutoCompleteCustomSource.AddRange(KullaniciProvider.GetAllTC().ToArray()); comboBox_cinsiyet.SelectedIndex = comboBox_kangrubu.SelectedIndex = comboBox_Kriter.SelectedIndex = comboBox_medenihal.SelectedIndex = comboBox_Unvan.SelectedIndex = 0; }