13 references to HotkeyPrefix
System.Drawing (7)
commonui\System\Drawing\Advanced\Gdiplus.cs (2)
3100
internal static extern int GdipSetStringFormatHotkeyPrefix(HandleRef format,
HotkeyPrefix
hotkeyPrefix);
3104
internal static extern int GdipGetStringFormatHotkeyPrefix(HandleRef format, out
HotkeyPrefix
hotkeyPrefix);
commonui\System\Drawing\Advanced\StringFormat.cs (5)
331
public
HotkeyPrefix
HotkeyPrefix {
333
HotkeyPrefix
hotkeyPrefix;
344
if (!ClientUtils.IsEnumValid(value, unchecked((int)value), (int)
HotkeyPrefix
.None, (int)
HotkeyPrefix
.Hide))
346
throw new InvalidEnumArgumentException("value", unchecked((int)value), typeof(
HotkeyPrefix
));
System.Windows.Forms (6)
winforms\Managed\System\WinForms\ButtonInternal\ButtonBaseAdapter.cs (1)
900
internal
HotkeyPrefix
gdipHotkeyPrefix;
winforms\Managed\System\WinForms\ControlPaint.cs (3)
2739
stringFormat.HotkeyPrefix = System.Drawing.Text.
HotkeyPrefix
.None;
2742
stringFormat.HotkeyPrefix = System.Drawing.Text.
HotkeyPrefix
.Show;
2745
stringFormat.HotkeyPrefix = System.Drawing.Text.
HotkeyPrefix
.Hide;
winforms\Managed\System\WinForms\GroupBox.cs (2)
568
format.HotkeyPrefix = ShowKeyboardCues ? System.Drawing.Text.
HotkeyPrefix
.Show : System.Drawing.Text.
HotkeyPrefix
.Hide;