7 references to DLGC_WANTALLKEYS
System.Windows.Forms (7)
winforms\Managed\System\WinForms\Control.cs (5)
7617
mask = NativeMethods.DLGC_WANTCHARS | NativeMethods.
DLGC_WANTALLKEYS
| NativeMethods.DLGC_WANTTAB;
7620
mask = NativeMethods.DLGC_WANTCHARS | NativeMethods.
DLGC_WANTALLKEYS
;
7645
int mask = NativeMethods.
DLGC_WANTALLKEYS
;
7648
mask = NativeMethods.
DLGC_WANTALLKEYS
| NativeMethods.DLGC_WANTTAB;
7654
mask = NativeMethods.
DLGC_WANTALLKEYS
| NativeMethods.DLGC_WANTARROWS;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
6916
m.Result = (IntPtr)((long)m.Result | NativeMethods.
DLGC_WANTALLKEYS
| NativeMethods.DLGC_WANTTAB);
winforms\Managed\System\WinForms\TextBoxBase.cs (1)
2233
m.Result = (IntPtr)(unchecked( (int) (long)m.Result) & ~(NativeMethods.DLGC_WANTTAB | NativeMethods.
DLGC_WANTALLKEYS
));