R
Ron M. Newman
Hi,
Combo boxes property values in property grids are done using the use of
enums.
private enum Fruit
{
Apple, Banana, Orange, Peach, Pear
}
What happens if I want to have class names in there? I can't use
"System.Object". the dot doesn't compile. is there a way around that?
thanks,
Ron
Combo boxes property values in property grids are done using the use of
enums.
private enum Fruit
{
Apple, Banana, Orange, Peach, Pear
}
What happens if I want to have class names in there? I can't use
"System.Object". the dot doesn't compile. is there a way around that?
thanks,
Ron