123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- namespace Microsoft.Windows.Forms
- {
-
-
-
- public enum State : int
- {
-
-
-
- Normal = 0,
-
-
-
- NormalFocused = 1,
-
-
-
- Hovered = 2,
-
-
-
- HoveredFocused = 3,
-
-
-
- Pressed = 4,
-
-
-
- PressedFocused = 5,
-
-
-
- Disabled = 6,
-
-
-
- Hidden = 7,
-
-
-
- Highlight = 8,
- }
- }
|