7 references to TextWithoutMnemonics
System.Windows.Forms (7)
System\Windows\Forms\Accessibility\Control.ControlAccessibleObject.cs (1)
318return WindowsFormsUtils.TextWithoutMnemonics(TextLabel);
System\Windows\Forms\Controls\Buttons\ButtonBase.ButtonBaseAccessibleObject.cs (1)
64return owner.UseMnemonic ? WindowsFormsUtils.TextWithoutMnemonics(TextLabel) : TextLabel;
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
843_textToolTip.Show(WindowsFormsUtils.TextWithoutMnemonics(Text), this);
System\Windows\Forms\Controls\Labels\Label.cs (1)
1163_textToolTip.Show(WindowsFormsUtils.TextWithoutMnemonics(Text), this);
System\Windows\Forms\Controls\Labels\Label.LabelAccessibleObject.cs (1)
34return owner.UseMnemonic ? WindowsFormsUtils.TextWithoutMnemonics(TextLabel) : TextLabel;
System\Windows\Forms\Controls\Labels\LinkLabel.Link.LinkAccessibleObject.cs (1)
120return _owningLinkLabel.UseMnemonic ? name = WindowsFormsUtils.TextWithoutMnemonics(name) : name;
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.ToolStripItemAccessibleObject.cs (1)
132return WindowsFormsUtils.TextWithoutMnemonics(_ownerItem.Text)!;