ComboBox eklenir ve aşağıdaki işlemler sırasıyla yapılır.
ComboBox ' a çift tıklanır ve içine aşağıdaki kod yazılır.
private void
comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
string gün = comboBox1.Text;
switch (gün)
{
case "Pazartesi":
case "Salı":
case "Çarşamba":
case "Perşembe":
case "Cuma":
label1.Text = "hafta içi"; break;
case "Cumartesi":
case "Pazar":
label1.Text = "hafta sonu"; break;
}
Hiç yorum yok:
Yorum Gönder