The PropertyGrid WinForm property does a great job of standard enumeration, but it has a built-in editor for enumerating a flag. Someone must have written one; Iβm rather not reinventing the force.
I am looking for an editor that places a checkmark next to each member of the enumeration so that the user can manage incoming members. My listing is as follows:
[Flags] public enum AutoPricingCalendar { Sunday = 1, Monday = 2, Tuesday = 4, Wednesday = 8, Thursday = 16, Friday = 32, Saturday = 64, }
Ian ringrose
source share