11

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,
   }
Ian Ringrose
  • 51,220
  • 55
  • 213
  • 317

1 Answers1

13

CodeProject: A UITypeEditor for easy editing of flag enum properties in the property browser

Mark Cidade
  • 98,437
  • 31
  • 224
  • 236