15 references to UICues
System.Windows.Forms (15)
System\Windows\Forms\Control.cs (7)
12192
UICues
UIcues =
UICues
.None;
12200
UIcues |=
UICues
.ChangeKeyboard;
12209
UIcues |=
UICues
.ShowKeyboard;
12221
UIcues |=
UICues
.ChangeFocus;
12230
UIcues |=
UICues
.ShowFocus;
12235
if ((UIcues &
UICues
.Changed) != 0)
System\Windows\Forms\UICuesEventArgs.cs (8)
11
private readonly
UICues
_uicues;
13
public UICuesEventArgs(
UICues
uicues)
21
public bool ShowFocus => (_uicues &
UICues
.ShowFocus) != 0;
26
public bool ShowKeyboard => (_uicues &
UICues
.ShowKeyboard) != 0;
31
public bool ChangeFocus => (_uicues &
UICues
.ChangeFocus) != 0;
36
public bool ChangeKeyboard => (_uicues &
UICues
.ChangeKeyboard) != 0;
38
public
UICues
Changed => (_uicues &
UICues
.Changed);