UICues Enumeration
Specifies the state of the user interface.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Visual Basic] <Flags> <Serializable> Public Enum UICues [C#] [Flags] [Serializable] public enum UICues [C++] [Flags] [Serializable] __value public enum UICues [JScript] public Flags Serializable enum UICues
Remarks
This enumeration is used by members such as the UICuesEventArgs constructor.
This enumeration is used to specify which user interface cues will be displayed or changed. For example, when the user presses the ALT key, the keyboard shortcuts on the menu are displayed by underlining the appropriate character. The bitwise combination of UICues for this example would be ShowKeyboard and ChangeKeyboard.
Members
| Member name | Description | Value |
|---|---|---|
| Changed | The state of the focus cues and keyboard cues has changed. | 12 |
| ChangeFocus | The state of the focus cues has changed. | 4 |
| ChangeKeyboard | The state of the keyboard cues has changed. | 8 |
| None | No change was made. | 0 |
| ShowFocus | Focus rectangles are displayed after the change. | 1 |
| ShowKeyboard | Keyboard cues are underlined after the change. | 2 |
| Shown | Focus rectangles are displayed and keyboard cues are underlined after the change. | 3 |
Requirements
Namespace: System.Windows.Forms
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
See Also
System.Windows.Forms Namespace | UICuesEventArgs | ChangeUICues