9 references to CtrlA
System.Windows.Forms (2)
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
2443if ((int)keyData == (int)Shortcut.CtrlA)
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
164(int)Shortcut.CtrlV, (int)Shortcut.CtrlA, (int)Shortcut.CtrlL, (int)Shortcut.CtrlR,
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\ShortcutKeysEditorTests.cs (1)
24yield return new object[] { Shortcut.CtrlA };
System.Windows.Forms.Tests (6)
TextBoxBaseTests.cs (6)
5815yield return new object[] { shortcutsEnabled, readOnly, (Keys)Shortcut.CtrlA, true }; 5829yield return new object[] { shortcutsEnabled, readOnly, (Keys)Shortcut.CtrlA | Keys.Shift, !shortcutsEnabled }; 5884[InlineData(true, false, (Keys)Shortcut.CtrlA, true, true)] 5885[InlineData(true, false, (Keys)Shortcut.CtrlA, false, true)] 5886[InlineData(false, false, (Keys)Shortcut.CtrlA, true, true)] 5887[InlineData(false, false, (Keys)Shortcut.CtrlA, false, true)]