CheckedListBox Demo 2 : ListBox « 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 » ListBoxScreenshots 
CheckedListBox Demo 2
CheckedListBox Demo 2


using System;
using System.Windows.Forms;
using System.Drawing;
using System.ComponentModel;
 
public class CheckedListBoxDemo:Form{
  CheckedListBox FavLangs;
  GroupBox grpControls;
  Button AddValue;
  Button EditValue;
  Button DeleteValue;
  Button ShowValues;
  TextBox OldValue;
  TextBox NewValue;
  Label OldCaption;
  Label NewCaption;
  CheckBox chkAll;
 
  public CheckedListBoxDemo(){
    grpControls=new GroupBox();
    grpControls.Text="CheckedListBox Demo";
 
    AddValue=new Button();
    AddValue.Text="&Add";
    AddValue.Click+=new EventHandler(Add_Click);
    
    EditValue=new Button();
    EditValue.Text="&Edit";
    EditValue.Click+=new EventHandler(Edit_Click);
    
    DeleteValue=new Button();
    DeleteValue.Text="&Delete";
    DeleteValue.Click+=new EventHandler(Delete_Click);
    
    ShowValues=new Button();
    ShowValues.Text="&Show";
    //ShowValues.Click+=new EventHandler(ShowValues_Click);
    ShowValues.Click+=new EventHandler(Checked_Changed);
    
    OldValue=new TextBox();
    OldValue.ReadOnly=true;
    NewValue=new TextBox();
 
    OldCaption=new Label();
    OldCaption.Text="Old Value:";
    NewCaption=new Label();
    NewCaption.Text="New Value:";

    chkAll=new CheckBox();
    chkAll.Text="Check/UnCheck All";
    chkAll.CheckedChanged+= new EventHandler(Checked_Changed);
    chkAll.Width=175;
 
    OldCaption.Location=new Point(15,15);
    PositionControl(OldCaption,OldValue,true);
    PositionControl(OldCaption,NewCaption,false);
    PositionControl(OldValue,NewValue,false);
    PositionControl(NewCaption,AddValue,false);
    PositionControl(AddValue,EditValue,true);
    PositionControl(EditValue,DeleteValue,true);
    PositionControl(DeleteValue,ShowValues,true);
    PositionControl(AddValue,chkAll,false);
 
    grpControls.Controls.AddRange(new Control[]{OldCaption,OldValue,NewCaption,NewValue,AddValue,EditValue,DeleteValue,ShowValues,chkAll});
    grpControls.Size=new Size(450,200);
 
    FavLangs=new CheckedListBox();
    FavLangs.Location=new Point(10,10);
    FavLangs.SelectedIndexChanged+=new EventHandler(SelectedIndex_Changed);
 
    grpControls.Location=new Point(FavLangs.Left+FavLangs.Width+20,FavLangs.Top);
    this.Controls.AddRange(new Control[]{FavLangs,grpControls});
  }
 
  private void PositionControl(Control source,Control destination,bool CanPlaceHorizontal)
  {
    if(CanPlaceHorizontal){
      destination.Location=new Point(source.Left+source.Width+20,source.Top);
    }else{
      destination.Location=new Point(source.Left,source.Top+source.Height+20);      
    }
  }
 
  private void Add_Click(object sender,EventArgs e){
    ((Button)sender).Text = "aaa";
    
    if(NewValue.Text.Trim()!=""){
      FavLangs.Items.Add(NewValue.Text);
    }else{
      MessageBox.Show("Enter a Value to Add");
    }
  }
 
  private void SelectedIndex_Changed(object sender,EventArgs e){
    OldValue.Text=FavLangs.Items[FavLangs.SelectedIndex].ToString();
  }
 
  private void Edit_Click(object sender,EventArgs e){
    if(FavLangs.SelectedIndex==-1){
      MessageBox.Show("Select a Item to Edit");
    else{
     if(NewValue.Text.Trim()!=""){
        FavLangs.Items[FavLangs.SelectedIndex]=NewValue.Text;
     }
      else
      {
        MessageBox.Show("Enter a Value to Edit");
      }            
    }
  }
 
  private void Delete_Click(object sender,EventArgs e)
  {
    if(FavLangs.SelectedIndex!=-1)
    {
      FavLangs.Items.RemoveAt(FavLangs.SelectedIndex);
    }
    else
    {
      MessageBox.Show("Select a Item to Delete");
    }
  }
 
  private void ShowValues_Click(object sender,EventArgs e){
    string SelectedValues="The following value(s) are Selected:\n" new String('-',48"\n";
    for(int i=0;i<FavLangs.CheckedItems.Count;i++){
      SelectedValues+=FavLangs.CheckedItems[i].ToString() "\n";
    }
    MessageBox.Show(SelectedValues);
  }
 
  private void Checked_Changed(object sender,EventArgs e){
      for(int i=0;i<FavLangs.Items.Count;i++){
          FavLangs.SetItemChecked(i,chkAll.Checked);
      }    
  }
 
  public static void Main(){
      Application.Run(new CheckedListBoxDemo());
  }
}

           
       
Related examples in the same category
1.Add new item to ListBox (text from TextBox) Add new item to ListBox (text from TextBox)
2.Remove item if one is selected from ListBoxRemove item if one is selected from ListBox
3.Clear all items in a ListBoxClear all items in a ListBox
4.ListBox selected Item changed eventListBox selected Item changed event
5.Add Object to ListBoxAdd Object to ListBox
6.List Box click eventList Box click event
7.Set TopIndex to auto scroll ListBoxSet TopIndex to auto scroll ListBox
8.Form with list, buttonForm with list, button
9.ListBox: font and imageListBox: font and image
10.ListBox Demo 2ListBox Demo 2
11.ListBox and Metafile EnumListBox and Metafile Enum
12.ListBox ObjectsListBox Objects
13.Fill XML data to ListBox
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.