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