25 references to Insert
System.Windows.Forms (16)
System\Windows\Forms\Control.cs (2)
6170
if (keyVal is Keys.
Insert
or Keys.NumLock or Keys.CapsLock or Keys.Scroll)
6181
return keyVal is Keys.
Insert
or Keys.CapsLock ? (result & 0x1) != 0x0 : (result & 0x8001) != 0x0;
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (4)
10097
case Keys.
Insert
:
15698
case Keys.
Insert
:
20083
else if (key is Keys.C or Keys.
Insert
)
24506
case Keys.
Insert
:
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
2865
case Keys.
Insert
:
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewTextBox.cs (1)
203
case Keys.
Insert
:
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
1864
if (keyCode == Keys.
Insert
&& e.Modifiers == Keys.None && _insertMode == InsertKeyMode.Default)
System\Windows\Forms\Controls\ToolStrips\ToolStripManager.cs (1)
679
else if (keyCode is Keys.Delete or Keys.
Insert
)
System\Windows\Forms\Input\KeysConverter.cs (1)
57
AddLocalizedKey(nameof(SR.toStringInsert), Keys.
Insert
);
System\Windows\Forms\SendKeys\SendKeys.cs (2)
45
new("INS", Keys.
Insert
),
46
new("INSERT", Keys.
Insert
),
System\Windows\Forms\Shortcut.cs (3)
515
Ins = Keys.
Insert
,
520
CtrlIns = Keys.Control + Keys.
Insert
,
525
ShiftIns = Keys.Shift + Keys.
Insert
,
System.Windows.Forms.Design (2)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
639
case Keys.
Insert
:
System\Windows\Forms\Design\ShortcutKeysEditor.ShortcutKeysUI.cs (1)
25
Keys.G, Keys.H, Keys.I, Keys.
Insert
, Keys.J, Keys.K, Keys.L, Keys.Left, Keys.M, Keys.N, Keys.NumLock,
System.Windows.Forms.Tests (7)
System\Windows\Forms\ControlTests.Methods.cs (3)
4395
yield return new object[] { Keys.
Insert
, false };
4425
yield return new object[] { Keys.Control | Keys.
Insert
, false };
4455
yield return new object[] { Keys.Alt | Keys.
Insert
, false };
System\Windows\Forms\KeysConverterTests.cs (1)
148
Keys.F9, Keys.Home, Keys.
Insert
, Keys.Next, Keys.PageUp, Keys.Shift
System\Windows\Forms\TabControlTests.cs (3)
3997
yield return new object[] { Keys.
Insert
, false };
4022
yield return new object[] { Keys.Control | Keys.
Insert
, false };
4051
yield return new object[] { Keys.Alt | Keys.
Insert
, false };