8 overrides of ProcessDialogChar
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1386protected override bool ProcessDialogChar(char charCode) =>
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
1180protected override bool ProcessDialogChar(char charCode)
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\AnchorEditor.AnchorUI.cs (1)
285protected override bool ProcessDialogChar(char charCode)
System.Windows.Forms.Tests (5)
System\Windows\Forms\ControlTests.Methods.cs (1)
5484protected override bool ProcessDialogChar(char charCode) => ProcessDialogCharAction(charCode);
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
2085protected override bool ProcessDialogChar(char charCode) => ProcessDialogCharAction(charCode);
System\Windows\Forms\MenuStripTests.cs (1)
833protected override bool ProcessDialogChar(char charCode) => ProcessDialogCharAction(charCode);
System\Windows\Forms\ToolStripTests.cs (1)
7447protected override bool ProcessDialogChar(char charCode) => ProcessDialogCharAction(charCode);
WebBrowserBaseTests.cs (1)
869protected override bool ProcessDialogChar(char charCode) => ProcessDialogCharAction(charCode);
12 references to ProcessDialogChar
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (7)
8538/// the control isn't interested in the character message, then <see cref="ProcessDialogChar(char)"/> is 8542/// For WM_SYSCHAR messages, this calls <see cref="ProcessDialogChar(char)"/> to check for dialog characters 8552/// <see cref="IsInputKey(Keys)"/>, <see cref="ProcessCmdKey(ref Message, Keys)"/>, <see cref="ProcessDialogChar(char)"/>, 8591result = ProcessDialogChar((char)(nint)msg.WParamInternal); 8807/// processing the character. The <see cref="ProcessDialogChar(char)"/> method simply sends the character to the 8808/// parent's <see cref="ProcessDialogChar(char)"/> method, or returns <see langword="false"/> if the control has no 8812protected virtual bool ProcessDialogChar(char charCode) => _parent?.ProcessDialogChar(charCode) ?? false;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1389|| base.ProcessDialogChar(charCode);
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
1188return base.ProcessDialogChar(charCode);
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\AnchorEditor.AnchorUI.cs (1)
293return base.ProcessDialogChar(charCode);
System.Windows.Forms.Tests (1)
System\Windows\Forms\ControlTests.cs (1)
1396public new bool ProcessDialogChar(char charCode) => base.ProcessDialogChar(charCode);
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
536e.StagingItem.Input.Handled = this.ProcessDialogChar(text[0]);