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