The WinForm PropertyGrid copes well with a standard enum but does does have a built in editor for a flag enum. Someone must have written one, I rather not reinvent the weel.
I am looking for an editor that puts a checkbox next to each member of the enum so the user can control the members that are included. My enum looks like:
[Flags]
public enum AutoPricingCalendar
{
Sunday = 1,
Monday = 2,
Tuesday = 4,
Wednesday = 8,
Thursday = 16,
Friday = 32,
Saturday = 64,
}
CodeProject: A UITypeEditor for easy editing of flag enum properties in the property browser
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With