31 references to F10
DesignSurface (1)
MainForm.Designer.cs (1)
252
this.ToolStripMenuItemKeyInvokeSmartTag.ShortcutKeys = System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.
F10
;
System.Windows.Forms (13)
System\Windows\Forms\Control.cs (3)
8930
if (keyCode is not Keys.
F10
and not Keys.Menu and not Keys.Tab)
8954
if (keyCode is Keys.
F10
or Keys.Menu)
12793
|| IsKeyDown(Keys.
F10
, stateArray)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
15693
case Keys.
F10
:
24459
case Keys.
F10
:
System\Windows\Forms\Controls\ToolStrips\ToolStripManager.cs (1)
713
=> (keyData & Keys.KeyCode) is Keys.Menu or Keys.
F10
;
System\Windows\Forms\Input\KeysConverter.cs (1)
43
AddKey("F10", Keys.
F10
);
System\Windows\Forms\SendKeys\SendKeys.cs (1)
59
new("F10", Keys.
F10
),
System\Windows\Forms\Shortcut.cs (5)
320
F10 = Keys.
F10
,
380
ShiftF10 = Keys.Shift + Keys.
F10
,
440
CtrlF10 = Keys.Control + Keys.
F10
,
500
CtrlShiftF10 = Keys.Control + Keys.Shift + Keys.
F10
,
615
AltF10 = Keys.Alt + Keys.
F10
,
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ShortcutKeysEditor.ShortcutKeysUI.cs (1)
22
Keys.D8, Keys.D9, Keys.Delete, Keys.Down, Keys.E, Keys.End, Keys.F, Keys.F1, Keys.
F10
, Keys.F11,
System.Windows.Forms.Tests (16)
KeyboardTooltipStateMachineTests.cs (3)
53
[InlineData(Keys.ControlKey | Keys.ShiftKey | Keys.
F10
)]
82
[InlineData(Keys.ControlKey | Keys.ShiftKey | Keys.
F10
, true)]
85
[InlineData(Keys.ControlKey | Keys.ShiftKey | Keys.
F10
, false)]
System\Windows\Forms\ControlTests.Methods.cs (12)
4409
yield return new object[] { Keys.
F10
, false };
4439
yield return new object[] { Keys.Control | Keys.
F10
, false };
4469
yield return new object[] { Keys.Alt | Keys.
F10
, false };
5294
yield return new object[] { 0, Keys.
F10
, false };
5300
yield return new object[] { (int)PInvokeCore.WM_KEYDOWN, Keys.
F10
, true };
5306
yield return new object[] { (int)PInvokeCore.WM_SYSKEYDOWN, Keys.
F10
, true };
5312
yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.
F10
, false };
5318
yield return new object[] { (int)PInvokeCore.WM_SYSKEYUP, Keys.
F10
, false };
5324
yield return new object[] { (int)PInvokeCore.WM_CHAR, Keys.
F10
, true };
5330
yield return new object[] { (int)PInvokeCore.WM_SYSCHAR, Keys.
F10
, false };
5336
yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.
F10
, false };
5342
yield return new object[] { (int)PInvokeCore.WM_SYSKEYUP, Keys.
F10
, false };
System\Windows\Forms\KeysConverterTests.cs (1)
147
Keys.Delete, Keys.End, Keys.Enter, Keys.F1, Keys.
F10
, Keys.F11, Keys.F12, Keys.F2, Keys.F3, Keys.F4, Keys.F5, Keys.F6, Keys.F7, Keys.F8,