6 references to GetMnemonic
System.Windows.Forms (6)
winforms\Managed\System\WinForms\Control.cs (2)
16976char mnemonic = WindowsFormsUtils.GetMnemonic(control.Text, true); 19692char mnemonic = WindowsFormsUtils.GetMnemonic(this.TextLabel, false);
winforms\Managed\System\WinForms\DateTimePicker.cs (2)
1764char previousLabelMnemonic = WindowsFormsUtils.GetMnemonic(previousLabel.Text, false /*convertToUpperCase*/); 1773char ownerTextMnemonic = WindowsFormsUtils.GetMnemonic(this.Owner.Text, false /*convertToUpperCase*/);
winforms\Managed\System\WinForms\MenuItem.cs (1)
1638mnemonic = (short) WindowsFormsUtils.GetMnemonic(caption, true);
winforms\Managed\System\WinForms\ToolStripItem.cs (1)
4125char mnemonic = WindowsFormsUtils.GetMnemonic(ownerItem.Text, false);