20 overrides of ProcessDialogKey
System.Windows.Forms (8)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1640
protected override bool
ProcessDialogKey
(Keys keyData) => !_ignoreDialogKeys && base.ProcessDialogKey(keyData);
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
20063
protected override bool
ProcessDialogKey
(Keys keyData)
System\Windows\Forms\Controls\Labels\LinkLabel.cs (1)
1406
protected override bool
ProcessDialogKey
(Keys keyData)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
3802
protected override bool
ProcessDialogKey
(Keys keyData)
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1396
protected override bool
ProcessDialogKey
(Keys keyData)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
2739
protected override bool
ProcessDialogKey
(Keys keyData)
System\Windows\Forms\Controls\WebBrowser\WebBrowserBase.cs (1)
214
protected override bool
ProcessDialogKey
(Keys keyData) =>
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
1192
protected override bool
ProcessDialogKey
(Keys keyData)
System.Windows.Forms.Design (7)
System\Drawing\Design\ColorEditor.ColorPalette.cs (1)
420
protected override bool
ProcessDialogKey
(Keys keyData)
System\Drawing\Design\ColorEditor.ColorUI.cs (1)
331
protected override bool
ProcessDialogKey
(Keys keyData)
System\Drawing\Design\CursorEditor.CursorUI.cs (1)
77
protected override bool
ProcessDialogKey
(Keys keyData)
System\Drawing\Design\SelectionPanelBase.cs (1)
97
protected override bool
ProcessDialogKey
(Keys keyData)
System\Windows\Forms\Design\AnchorEditor.AnchorUI.cs (1)
296
protected override bool
ProcessDialogKey
(Keys keyData)
System\Windows\Forms\Design\DesignerFrame.cs (1)
157
protected override bool
ProcessDialogKey
(Keys keyData)
System\Windows\Forms\Design\NavigationalTableLayoutPanel.cs (1)
28
protected override bool
ProcessDialogKey
(Keys keyData)
System.Windows.Forms.Tests (5)
System\Windows\Forms\ControlTests.Methods.cs (1)
5528
protected override bool
ProcessDialogKey
(Keys keyData) => ProcessDialogKeyAction(keyData);
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
2087
protected override bool
ProcessDialogKey
(Keys keyData) => ProcessDialogKeyAction(keyData);
System\Windows\Forms\ToolStripControlHostTests.cs (1)
4378
protected override bool
ProcessDialogKey
(Keys keyData) => ProcessDialogKeyAction(keyData);
TextBoxBaseTests.cs (1)
5933
protected override bool
ProcessDialogKey
(Keys keyData) => ProcessDialogKeyAction(keyData);
WebBrowserBaseTests.cs (1)
871
protected override bool
ProcessDialogKey
(Keys keyData) => ProcessDialogKeyAction(keyData);
25 references to ProcessDialogKey
System.Windows.Forms (18)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1640
protected override bool ProcessDialogKey(Keys keyData) => !_ignoreDialogKeys && base.
ProcessDialogKey
(keyData);
System\Windows\Forms\Control.cs (6)
8534
/// message, then <see cref="
ProcessDialogKey
(Keys)"/> is called to check for dialog keys such as TAB, arrow
8555
/// or <see cref="
ProcessDialogKey
(Keys)"/>) instead of overriding this method.
8581
result =
ProcessDialogKey
(keyData);
8823
/// is not processing the key. The <see cref="
ProcessDialogKey
(Keys)"/> simply sends the character to the parent's
8824
/// <see cref="
ProcessDialogKey
(Keys)"/> method, or returns <see langword="false"/> if the control has no parent.
8828
protected virtual bool ProcessDialogKey(Keys keyData) => _parent?.
ProcessDialogKey
(keyData) ?? false;
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (3)
20077
bool ret = base.
ProcessDialogKey
(keyData);
20138
bool result = base.
ProcessDialogKey
(keyData);
20151
return base.
ProcessDialogKey
(keyData);
System\Windows\Forms\Controls\Labels\LinkLabel.cs (1)
1443
return base.
ProcessDialogKey
(keyData);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (2)
3849
return base.
ProcessDialogKey
(keyData);
3914
return base.
ProcessDialogKey
(keyData);
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1406
return base.
ProcessDialogKey
(keyData);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
2805
return retVal ? retVal : base.
ProcessDialogKey
(keyData);
System\Windows\Forms\Controls\WebBrowser\WebBrowserBase.cs (1)
215
!_ignoreDialogKeys && base.
ProcessDialogKey
(keyData);
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
1220
return base.
ProcessDialogKey
(keyData);
System\Windows\Forms\Printing\PrintPreviewDialog.PrintPreviewDialogToolStripButton.cs (1)
11
/// See <see cref="Control.
ProcessDialogKey
"/> for more info.
System.Windows.Forms.Design (6)
System\Drawing\Design\ColorEditor.ColorPalette.cs (1)
433
return base.
ProcessDialogKey
(keyData);
System\Drawing\Design\ColorEditor.ColorUI.cs (1)
352
return base.
ProcessDialogKey
(keyData);
System\Drawing\Design\CursorEditor.CursorUI.cs (1)
85
return base.
ProcessDialogKey
(keyData);
System\Drawing\Design\SelectionPanelBase.cs (1)
105
return base.
ProcessDialogKey
(keyData);
System\Windows\Forms\Design\AnchorEditor.AnchorUI.cs (1)
326
return base.
ProcessDialogKey
(keyData);
System\Windows\Forms\Design\NavigationalTableLayoutPanel.cs (1)
58
return base.
ProcessDialogKey
(keyData);
System.Windows.Forms.Tests (1)
System\Windows\Forms\ControlTests.cs (1)
1396
public new bool ProcessDialogKey(Keys keyData) => base.
ProcessDialogKey
(keyData);