8 overrides of ProcessDialogChar
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1389protected override bool ProcessDialogChar(char charCode) =>
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
1181protected 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)
5515protected override bool ProcessDialogChar(char charCode) => ProcessDialogCharAction(charCode);
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
2083protected override bool ProcessDialogChar(char charCode) => ProcessDialogCharAction(charCode);
System\Windows\Forms\MenuStripTests.cs (1)
831protected override bool ProcessDialogChar(char charCode) => ProcessDialogCharAction(charCode);
System\Windows\Forms\ToolStripTests.cs (1)
7476protected override bool ProcessDialogChar(char charCode) => ProcessDialogCharAction(charCode);
WebBrowserBaseTests.cs (1)
867protected override bool ProcessDialogChar(char charCode) => ProcessDialogCharAction(charCode);
12 references to ProcessDialogChar
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (7)
8499/// the control isn't interested in the character message, then <see cref="ProcessDialogChar(char)"/> is 8503/// For WM_SYSCHAR messages, this calls <see cref="ProcessDialogChar(char)"/> to check for dialog characters 8513/// <see cref="IsInputKey(Keys)"/>, <see cref="ProcessCmdKey(ref Message, Keys)"/>, <see cref="ProcessDialogChar(char)"/>, 8552result = ProcessDialogChar((char)(nint)msg.WParamInternal); 8768/// processing the character. The <see cref="ProcessDialogChar(char)"/> method simply sends the character to the 8769/// parent's <see cref="ProcessDialogChar(char)"/> method, or returns <see langword="false"/> if the control has no 8773protected virtual bool ProcessDialogChar(char charCode) => _parent?.ProcessDialogChar(charCode) ?? false;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1392|| base.ProcessDialogChar(charCode);
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
1189return 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)
1394public new bool ProcessDialogChar(char charCode) => base.ProcessDialogChar(charCode);
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
543e.StagingItem.Input.Handled = this.ProcessDialogChar(text[0]);