User-1313886874 posted
hi keeler,
i think this will help u.....
http://wiki.asp.net/page.aspx/410/building-a-color-selector-control/
private void BindFillColorslist()
{
// get the list of known colors
System.Drawing.KnownColor[] colors =
(System.Drawing.KnownColor[])System.Enum.GetValues(typeof(System.Drawing.KnownColor));
//' add them to the drodownlist
foreach (System.Drawing.KnownColor c in colors)
{
DropDownList1.Items.Add(c.ToString());
}
}
if its helps u plz "Mark as Answer"