9 references to DLGC_WANTTAB
System.Windows.Forms (9)
winforms\Managed\System\WinForms\Control.cs (2)
7617
mask = NativeMethods.DLGC_WANTCHARS | NativeMethods.DLGC_WANTALLKEYS | NativeMethods.
DLGC_WANTTAB
;
7648
mask = NativeMethods.DLGC_WANTALLKEYS | NativeMethods.
DLGC_WANTTAB
;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
29919
m.Result = (IntPtr) ((long) m.Result | NativeMethods.
DLGC_WANTTAB
);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
5365
flags |= NativeMethods.
DLGC_WANTTAB
;
6916
m.Result = (IntPtr)((long)m.Result | NativeMethods.DLGC_WANTALLKEYS | NativeMethods.
DLGC_WANTTAB
);
winforms\Managed\System\WinForms\RichTextBox.cs (2)
3711
m.Result = (IntPtr)((AcceptsTab) ? unchecked( (int) (long)m.Result) | NativeMethods.
DLGC_WANTTAB
: unchecked( (int) (long)m.Result) & ~NativeMethods.
DLGC_WANTTAB
);
winforms\Managed\System\WinForms\TextBoxBase.cs (2)
2229
m.Result = (IntPtr)(unchecked( (int) (long)m.Result) | NativeMethods.
DLGC_WANTTAB
);
2233
m.Result = (IntPtr)(unchecked( (int) (long)m.Result) & ~(NativeMethods.
DLGC_WANTTAB
| NativeMethods.DLGC_WANTALLKEYS));