ColorComboBox CodeSample - Populating the Items collection
From Visual WebGui Wiki
| This article will have a few sections added to it soon, based on the following article type skeleton: NewCodeSampleTemplate |
Overview
A very simple example on how to manually populate the Items collection of ColorComboBox
VB.NET Code
ColorComboBox1.Items.Add(System.Drawing.Color.AliceBlue) ColorComboBox1.Items.Add(System.Drawing.Color.Aqua)
C# Code
this.ColorComboBox1.Items.Add(System.Drawing.Color.AliceBlue); this.ColorComboBox1.Items.Add(System.Drawing.Color.Aqua);
