To display all the colors,i've used combobox from windows controls First of all we need to get the Type of Color:
Type structType = typeof(Color); Then we use PropertyInfo to get all the controls: PropertyInfo[] fields = structType.GetProperties(); The reason why we didnt use FieldInfo instead of PropertyInfo is Each color is actually Property and have fields like R,G,B,A. So we iterated through PropertyInfo and populated our combobox object.
foreach (PropertyInfo field in fields)
{
cbo.Items.Add(field.Name);
} When we run it,we'll be getting extra useless items: So what to do? I've written a simple iteration to remove these useless items:
for (int a = 0; a <= 5; a++)
cbo.Items.RemoveAt(0);
}
It removes the first 6 items from the list. Simple but useful.As it seems.
You need to be a premium member to use this feature. To access it, you'll have to upgrade your membership.
Become a sharper developer and jumpstart your career.
$0
$
. 00
monthly
For Basic members:
$20
For Premium members:
$45
For Elite members: