Nasıl Yapılır

C# İle Örnekler #70

c

C# ComboBox SelectedIndexChanged Olayı

Form yüklendiğinde combobox içine elemanların eklenmesi;

private void Form1_Load(object sender, EventArgs e)
        {
            comboBox1.Items.Add("Adana");
            comboBox1.Items.Add("Osmaniye");
        }

combobox1 seçim değiştiğinde çalışacak kodlar;

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            listBox1.Items.Clear();
            if(comboBox1.SelectedIndex==0)
            {
                listBox1.Items.Add("Çukurova");
                listBox1.Items.Add("Seyhan");
                listBox1.Items.Add("Yüreğir");
                listBox1.Items.Add("Sarıçam");
            }
            else if(comboBox1.SelectedIndex==1)
            {
                listBox1.Items.Add("Toprakkale");
                listBox1.Items.Add("Mustafabeyli");
                listBox1.Items.Add("Ceyhan");
                listBox1.Items.Add("Kadirli");
 
            }
 
        }

 

Yazar Hakkında

Hız Hosting

Yorum Yap