26 references to C
Accessibility_Core_App (1)
Menu_Toolbars_controls.Designer.cs (1)
274copyToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.C;
DesignSurface (1)
MainForm.Designer.cs (1)
226this.ToolStripMenuItemCopy.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
System.Windows.Forms (11)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (5)
10096case Keys.C: 15686case Keys.C: 20083else if (key is Keys.C or Keys.Insert) 21854&& (keyData & Keys.KeyCode) == Keys.C)) 24505case Keys.C:
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (3)
2872goto case Keys.C; 2873case Keys.C: 2920if (entry is not null && e.KeyData == (Keys.C | Keys.Alt | Keys.Shift | Keys.Control))
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewTextBox.cs (1)
184case Keys.C:
System\Windows\Forms\Shortcut.cs (2)
29CtrlC = Keys.Control + Keys.C, 159CtrlShiftC = Keys.Control + Keys.Shift + Keys.C,
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ShortcutKeysEditor.ShortcutKeysUI.cs (1)
21Keys.A, Keys.B, Keys.C, Keys.D, Keys.D0, Keys.D1, Keys.D2, Keys.D3, Keys.D4, Keys.D5, Keys.D6, Keys.D7,
System\Windows\Forms\Design\StandardMenuStripVerb.cs (1)
91[/*Edit*/Keys.None, /*Undo*/Keys.Control | Keys.Z, /*Redo*/Keys.Control | Keys.Y, /*Separator*/Keys.None, /*Cut*/ Keys.Control | Keys.X, /*Copy*/ Keys.Control | Keys.C, /*Paste*/Keys.Control | Keys.V, /*Separator*/ Keys.None, /*SelectAll*/Keys.None],
System.Windows.Forms.Tests (10)
System\Windows\Forms\ControlTests.Methods.cs (3)
4394yield return new object[] { Keys.C, false }; 4424yield return new object[] { Keys.Control | Keys.C, false }; 4454yield return new object[] { Keys.Alt | Keys.C, false };
System\Windows\Forms\KeysConverterTests.cs (3)
59[InlineData(Keys.Control | Keys.C, "Ctrl+C")] 89yield return new object[] { "zh-CN", Keys.Control | Keys.C, new Enum[] { Keys.Control, Keys.C } };
System\Windows\Forms\SendKeysTests.cs (1)
23Assert.Equal(Keys.C, form.KeyEvents[3].KeyCode);
System\Windows\Forms\TabControlTests.cs (3)
3996yield return new object[] { Keys.C, false }; 4021yield return new object[] { Keys.Control | Keys.C, false }; 4050yield return new object[] { Keys.Alt | Keys.C, false };
WinFormsControlsTest (1)
MenuStripAndCheckedListBox.Designer.cs (1)
231this.uncheckedCheckOnClickToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));