20 overrides of ProcessDialogKey
System.Windows.Forms (8)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1639protected override bool ProcessDialogKey(Keys keyData) => !_ignoreDialogKeys && base.ProcessDialogKey(keyData);
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
20043protected override bool ProcessDialogKey(Keys keyData)
System\Windows\Forms\Controls\Labels\LinkLabel.cs (1)
1406protected override bool ProcessDialogKey(Keys keyData)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
3802protected override bool ProcessDialogKey(Keys keyData)
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1404protected override bool ProcessDialogKey(Keys keyData)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
2741protected override bool ProcessDialogKey(Keys keyData)
System\Windows\Forms\Controls\WebBrowser\WebBrowserBase.cs (1)
214protected override bool ProcessDialogKey(Keys keyData) =>
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
1192protected override bool ProcessDialogKey(Keys keyData)
System.Windows.Forms.Design (7)
System\Drawing\Design\ColorEditor.ColorPalette.cs (1)
420protected override bool ProcessDialogKey(Keys keyData)
System\Drawing\Design\ColorEditor.ColorUI.cs (1)
331protected override bool ProcessDialogKey(Keys keyData)
System\Drawing\Design\CursorEditor.CursorUI.cs (1)
77protected override bool ProcessDialogKey(Keys keyData)
System\Drawing\Design\SelectionPanelBase.cs (1)
97protected override bool ProcessDialogKey(Keys keyData)
System\Windows\Forms\Design\AnchorEditor.AnchorUI.cs (1)
296protected override bool ProcessDialogKey(Keys keyData)
System\Windows\Forms\Design\DesignerFrame.cs (1)
157protected override bool ProcessDialogKey(Keys keyData)
System\Windows\Forms\Design\NavigationalTableLayoutPanel.cs (1)
28protected override bool ProcessDialogKey(Keys keyData)
System.Windows.Forms.Tests (5)
System\Windows\Forms\ControlTests.Methods.cs (1)
5519protected override bool ProcessDialogKey(Keys keyData) => ProcessDialogKeyAction(keyData);
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
2087protected override bool ProcessDialogKey(Keys keyData) => ProcessDialogKeyAction(keyData);
System\Windows\Forms\ToolStripControlHostTests.cs (1)
4378protected override bool ProcessDialogKey(Keys keyData) => ProcessDialogKeyAction(keyData);
TextBoxBaseTests.cs (1)
5933protected override bool ProcessDialogKey(Keys keyData) => ProcessDialogKeyAction(keyData);
WebBrowserBaseTests.cs (1)
871protected override bool ProcessDialogKey(Keys keyData) => ProcessDialogKeyAction(keyData);
25 references to ProcessDialogKey
System.Windows.Forms (18)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1639protected 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. 8540result = 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. 8787protected virtual bool ProcessDialogKey(Keys keyData) => _parent?.ProcessDialogKey(keyData) ?? false;
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (3)
20057bool ret = base.ProcessDialogKey(keyData); 20120ret = base.ProcessDialogKey(keyData); 20133return base.ProcessDialogKey(keyData);
System\Windows\Forms\Controls\Labels\LinkLabel.cs (1)
1443return base.ProcessDialogKey(keyData);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (2)
3849return base.ProcessDialogKey(keyData); 3914return base.ProcessDialogKey(keyData);
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1414return base.ProcessDialogKey(keyData);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
2807return 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)
1220return 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)
433return base.ProcessDialogKey(keyData);
System\Drawing\Design\ColorEditor.ColorUI.cs (1)
352return base.ProcessDialogKey(keyData);
System\Drawing\Design\CursorEditor.CursorUI.cs (1)
85return base.ProcessDialogKey(keyData);
System\Drawing\Design\SelectionPanelBase.cs (1)
105return base.ProcessDialogKey(keyData);
System\Windows\Forms\Design\AnchorEditor.AnchorUI.cs (1)
326return base.ProcessDialogKey(keyData);
System\Windows\Forms\Design\NavigationalTableLayoutPanel.cs (1)
58return base.ProcessDialogKey(keyData);
System.Windows.Forms.Tests (1)
System\Windows\Forms\ControlTests.cs (1)
1396public new bool ProcessDialogKey(Keys keyData) => base.ProcessDialogKey(keyData);