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