Get Selected item from ComboBox : ComboBox « GUI Windows Form « C# / C Sharp






Get Selected item from ComboBox

Get Selected item from ComboBox
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.Add items to combo boxAdd items to combo box
2.ComboBox Selected Item changed event
3.ComboBox selected Item changed event 1
4.ComboBox selected item changed event 2ComboBox selected item changed event 2
5.ComboBox with color cell rendererComboBox with color cell renderer
6.WindowsXP controlsWindowsXP controls