using System; using System.Drawing; using System.Windows.Forms; class Program01 : Form { ComboBox kombo = new ComboBox(); Program01() { kombo.Items.Add("Pali"); kombo.Items.Add("Kati"); kombo.Items.Add("Lali"); kombo.Items.Add("Lili"); kombo.Items.Add("Dani"); kombo.Items.Add("Viki"); kombo.Items.Add("Benci"); kombo.Items.Add("Niki"); kombo.SelectedIndexChanged += OnIndexChanges; this.Controls.Add(kombo); this.Size = new Size(400, 300); this.Show(); } public void OnIndexChanges(object sender, EventArgs e) { this.Text = "más"; } public static void Main() { Application.Run(new Program01()); } }