5 overrides of ProcessMnemonic
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (1)
816protected internal override bool ProcessMnemonic(char charCode)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownButton.cs (1)
215protected internal override bool ProcessMnemonic(char charCode)
System\Windows\Forms\Controls\ToolStrips\ToolStripLabel.cs (1)
383protected internal override bool ProcessMnemonic(char charCode)
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (1)
1052protected internal override bool ProcessMnemonic(char charCode)
System\Windows\Forms\Controls\ToolStrips\ToolStripSplitButton.cs (1)
377protected internal override bool ProcessMnemonic(char charCode)
5 references to ProcessMnemonic
System.Windows.Forms (4)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (2)
3050return firstMatch.ProcessMnemonic(charCode); 3109return firstMatch.ProcessMnemonic(charCode);
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (1)
817=> _control is not null ? _control.ProcessMnemonic(charCode) : base.ProcessMnemonic(charCode);
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (1)
1066return base.ProcessMnemonic(charCode);
System.Windows.Forms.Tests (1)
System\Windows\Forms\ToolStripItemTests.cs (1)
15623public new bool ProcessMnemonic(char charCode) => base.ProcessMnemonic(charCode);