DrawItemState.cs 391 B

12345678910111213141516171819
  1. namespace System.Windows.Forms
  2. {
  3. [Flags]
  4. public enum DrawItemState
  5. {
  6. Checked = 0x8,
  7. ComboBoxEdit = 0x1000,
  8. Default = 0x20,
  9. Disabled = 0x4,
  10. Focus = 0x10,
  11. Grayed = 0x2,
  12. HotLight = 0x40,
  13. Inactive = 0x80,
  14. NoAccelerator = 0x100,
  15. NoFocusRect = 0x200,
  16. Selected = 0x1,
  17. None = 0x0
  18. }
  19. }