using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace combo { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { string s1 = comboBox1.SelectedItem.ToString(); switch (s1){ case "For": string ad = textBox1.Text; for (int i = 0; i < listBox1.Items.Count; i++) { if (listBox1.Items[i].ToString() == ad) { MessageBox.Show("For Döngüsü İle " + listBox1.Items[i].ToString() + " Adlı Kişi Bulundu.", "Başarılı"); break; } } break; case "While": string ad2 = textBox1.Text; int dd = 0; while (dd < listBox1.Items.Count) { if (listBox1.Items[dd].ToString() == ad2) { MessageBox.Show("While Döngüsü İle " + listBox1.Items[dd].ToString() + " Adlı Kişi Bulundu.", "Başarılı"); } dd++; } break; case "Do-While": string ad3 = textBox1.Text; int x = 0; do { if (listBox1.Items[x].ToString() == ad3) { MessageBox.Show("Do-While Döngüsü İle " + listBox1.Items[x].ToString() + " Adlı Kişi Bulundu.", "Başarılı"); } x++; }while (x < listBox1.Items.Count); break; default: MessageBox.Show("Hata"); break; } } private void Form1_Load(object sender, EventArgs e) { listBox1.Items.Add("Hasan"); listBox1.Items.Add("Mert"); listBox1.Items.Add("Furkan"); listBox1.Items.Add("Mahmut"); listBox1.Items.Add("Selami"); listBox1.Items.Add("Emir"); listBox1.Items.Add("İbrahim"); listBox1.Items.Add("Bertan"); listBox1.Items.Add("Muzaffer"); listBox1.Items.Add("Yusuf"); } } }