9 references to DLGC_WANTTAB
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (2)
6555
? (int)(PInvoke.DLGC_WANTCHARS | PInvoke.DLGC_WANTALLKEYS | PInvoke.
DLGC_WANTTAB
)
6585
mask = PInvoke.DLGC_WANTALLKEYS | PInvoke.
DLGC_WANTTAB
;
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
30020
m.ResultInternal = (LRESULT)(m.ResultInternal | (nint)PInvoke.
DLGC_WANTTAB
);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
5369
flags |= PInvoke.
DLGC_WANTTAB
;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewTextBox.cs (1)
359
m.ResultInternal = (LRESULT)(m.ResultInternal | (nint)(PInvoke.DLGC_WANTALLKEYS | PInvoke.
DLGC_WANTTAB
));
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (2)
3609
m.ResultInternal = (LRESULT)(AcceptsTab ? m.ResultInternal | (nint)PInvoke.
DLGC_WANTTAB
: m.ResultInternal & ~(nint)PInvoke.
DLGC_WANTTAB
);
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (2)
3017
? (LRESULT)(nint)(m.ResultInternal | (int)PInvoke.
DLGC_WANTTAB
)
3018
: (LRESULT)(nint)(m.ResultInternal & ~(int)(PInvoke.
DLGC_WANTTAB