13 references to IsMnemonic
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (1)
8912/// <see cref="IsMnemonic(char, string?)"/> method to determine whether the given character matches a mnemonic
System\Windows\Forms\Controls\Buttons\Button.cs (1)
283if (UseMnemonic && CanProcessMnemonic() && IsMnemonic(charCode, Text))
System\Windows\Forms\Controls\Buttons\CheckBox.cs (1)
520if (UseMnemonic && IsMnemonic(charCode, Text) && CanSelect)
System\Windows\Forms\Controls\Buttons\RadioButton.cs (1)
504if (UseMnemonic && IsMnemonic(charCode, Text) && CanSelect)
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
623if (IsMnemonic(charCode, Text) && CanProcessMnemonic())
System\Windows\Forms\Controls\Labels\Label.cs (1)
1362if (UseMnemonic && IsMnemonic(charCode, Text) && CanProcessMnemonic())
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
2910if (IsMnemonic(charCode, currentItem.Text))
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\FormatControl.cs (5)
163if (IsMnemonic(charCode, formatTypeLabel.Text)) 169if (IsMnemonic(charCode, nullValueLabel.Text)) 186if (IsMnemonic(charCode, secondRowLabel.Text)) 198if (IsMnemonic(charCode, secondRowLabel.Text)) 210if (IsMnemonic(charCode, secondRowLabel.Text))
System.Windows.Forms.Tests (1)
System\Windows\Forms\ControlTests.Methods.cs (1)
4522Assert.Equal(expected, Control.IsMnemonic(charCode, text));