12345678910111213141516171819 |
- namespace System.Windows.Forms
- {
- [Flags]
- public enum DrawItemState
- {
- Checked = 0x8,
- ComboBoxEdit = 0x1000,
- Default = 0x20,
- Disabled = 0x4,
- Focus = 0x10,
- Grayed = 0x2,
- HotLight = 0x40,
- Inactive = 0x80,
- NoAccelerator = 0x100,
- NoFocusRect = 0x200,
- Selected = 0x1,
- None = 0x0
- }
- }
|