20 overrides of ProcessDialogKey
System.Windows.Forms (8)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1639
protected override bool
ProcessDialogKey
(Keys keyData) => !_ignoreDialogKeys && base.ProcessDialogKey(keyData);
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
20043
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)
1404
protected override bool
ProcessDialogKey
(Keys keyData)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
2741
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)
5519
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)
1639
protected override bool ProcessDialogKey(Keys keyData) => !_ignoreDialogKeys && base.
ProcessDialogKey
(keyData);
System\Windows\Forms\Control.cs (6)
8493
/// message, then <see cref="
ProcessDialogKey
(Keys)"/> is called to check for dialog keys such as TAB, arrow
8514
/// or <see cref="
ProcessDialogKey
(Keys)"/>) instead of overriding this method.
8540
result =
ProcessDialogKey
(keyData);
8782
/// is not processing the key. The <see cref="
ProcessDialogKey
(Keys)"/> simply sends the character to the parent's
8783
/// <see cref="
ProcessDialogKey
(Keys)"/> method, or returns <see langword="false"/> if the control has no parent.
8787
protected virtual bool ProcessDialogKey(Keys keyData) => _parent?.
ProcessDialogKey
(keyData) ?? false;
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (3)
20057
bool ret = base.
ProcessDialogKey
(keyData);
20120
ret = base.
ProcessDialogKey
(keyData);
20133
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)
1414
return base.
ProcessDialogKey
(keyData);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
2807
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);