Beispiel #1
0
            // ********************************************* Construction *********************************************

            public Dropdown(CheckedComboBox ccbParent)
            {
                this.ccbParent = ccbParent;
                InitializeComponent();
                this.ShowInTaskbar = false;
                // Add a handler to notify our parent of ItemCheck events.
                this.cclb.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.cclb_ItemCheck);
            }
Beispiel #2
0
 // ********************************************* Construction *********************************************
 public Dropdown(CheckedComboBox ccbParent)
 {
     this.ccbParent = ccbParent;
     InitializeComponent();
     this.ShowInTaskbar = false;
     // Add a handler to notify our parent of ItemCheck events.
     this.cclb.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.cclb_ItemCheck);
 }