DekGenius.com
[ Team LiB ] Previous Section Next Section

UICuesserializable, flag

System.Windows.Forms (system.windows.forms.dll)enum

This set of flags is used by the UICuesEventArgs class to specify which of the UI cues has changed when the Control.ChangeUICues event is raised. The cues include such things as the focus rectangle, Alt key shortcuts, etc.

public enum UICues {
   None = 0x00000000,
   ShowFocus = 0x00000001,
   ShowKeyboard = 0x00000002,
   Shown = 0x00000003,
   ChangeFocus = 0x00000004,
   ChangeKeyboard = 0x00000008,
   Changed = 0x0000000C
}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparabl, System.IFormattable, System.IConvertible) UICues

Returned By

UICuesEventArgs.Changed

Passed To

UICuesEventArgs.UICuesEventArgs()

    [ Team LiB ] Previous Section Next Section