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