ComboBox.Items : ComboBox « System.Windows.Forms « C# / C Sharp by API






ComboBox.Items

   

using System;
using System.Drawing;
using System.Windows.Forms;
public class Select : Form {
  private Button draw = new Button();
  private ComboBox color = new ComboBox();

  public Select( ) {
    draw.Text = "Draw";
    color.Text = "Choose a color";
    Size = new Size(500,250);

    int w = 20;
    draw.Location = new Point(20,30);
    color.Location = new Point(w += 10 + color.Width, 30);

    color.Items.Add("Red");
    color.Items.Add("Green");
    color.Items.Add("Blue");

    Controls.Add(draw);
    Controls.Add(color);

    draw.Click += new EventHandler(Draw_Click);
  } 

  protected void Draw_Click(Object sender, EventArgs e) {
    if (color.SelectedItem.ToString() == "Red" )
      Console.WriteLine("It is red.");
    else if (color.SelectedItem.ToString() == "Green")
      Console.WriteLine("It is green.");
    else
      Console.WriteLine("It is blue.");
  }
  static void Main() {
    Application.Run(new Select());
  }
}

   
    
    
  








Related examples in the same category

1.extends ComboBox
2.ComboBox.AutoCompleteMode
3.ComboBox.AutoCompleteSource
4.ComboBox.DrawItem
5.ComboBox.FormattingEnabled
6.ComboBox.Leave
7.ComboBox.SelectionChangeCommitted
8.ComboBox.SelectedIndexChanged
9.ComboBox.SelectedItem