ComboBox selected item changed event 2 : ComboBox « GUI Windows Form « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » GUI Windows Form » ComboBoxScreenshots 
ComboBox selected item changed event 2
ComboBox selected item changed event 2

using System;
using System.Drawing;
using System.Windows.Forms;


public class Test : Form {
 
  private RadioButton square = new RadioButton();
  private RadioButton circle = new RadioButton();
  private ComboBox color = new ComboBox();
 
  private Color c = Color.Red;
 
  public Test( ) {
    Text = "Select Item";
    square.Text = "Square";
    circle.Text = "Circle";
    color.Text = "Choose a color";
 
    Size = new Size(400,250);
 
    int w = 20;
    square.Location = new Point(w, 30);
    circle.Location = new Point(w += 10 + square.Width, 30);
    color.Location = new Point(w += 10 + circle.Width, 30);
 
    color.Items.Add("Red");
    color.Items.Add("Green");
    color.Items.Add("Blue");
 
    Controls.Add(square);
    Controls.Add(circle);
    Controls.Add(color);
 
    square.CheckedChanged += new EventHandler(Checked_Changed)

    circle.CheckedChanged += new EventHandler(Checked_Changed)

    color.SelectedIndexChanged += new EventHandler(Selected_Index)
  }
 
  protected override void OnPaint(PaintEventArgs e){
    Graphics g = e.Graphics;
    Brush brush = new SolidBrush(c);
    if (square.Checked)
      g.FillRectangle(brush,100,100,100,100);
    else
      g.FillEllipse(brush,100,100,100,100);
    base.OnPaint);
  }
 
  protected void Selected_Index(Object sender, EventArgs e){
    if (color.SelectedItem.ToString() == "Red" )
      c = Color.Red;
    else if (color.SelectedItem.ToString() == "Green")
      c = Color.Green;
    else
      c = Color.Blue;
    Invalidate();
  }
 
  protected void Checked_Changed(Object sender, EventArgs e) {
    Invalidate();
  }
  static void Main() {
    Application.Run(new Test());
  }
}

           
       
Related examples in the same category
1.Add items to combo boxAdd items to combo box
2.Get Selected item from ComboBoxGet Selected item from ComboBox
3.ComboBox Selected Item changed event
4.ComboBox selected Item changed event 1
5.ComboBox with color cell rendererComboBox with color cell renderer
6.WindowsXP controlsWindowsXP controls
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.