13 references to Shift
System.Windows.Forms (12)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
24461
if (e.Control && e.
Shift
)
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonCell.cs (3)
440
e.KeyCode == Keys.Space && !e.Alt && !e.Control && !e.
Shift
;
464
if (e.KeyCode == Keys.Space && !e.Alt && !e.Control && !e.
Shift
)
481
if (!e.Alt && !e.Control && !e.
Shift
)
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (3)
757
e.KeyCode == Keys.Space && !e.Alt && !e.Control && !e.
Shift
;
811
if (e.KeyCode == Keys.Space && !e.Alt && !e.Control && !e.
Shift
)
828
if (!e.Alt && !e.Control && !e.
Shift
)
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (1)
1519
(e.KeyCode == Keys.Space && !e.
Shift
) ||
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (2)
685
if (e.KeyCode == Keys.Space && !e.Alt && !e.Control && !e.
Shift
)
731
if (e.KeyCode == Keys.Space && !e.Alt && !e.Control && !e.
Shift
)
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxCell.cs (1)
537
(e.KeyCode == Keys.Space && !e.
Shift
)) &&
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
2690
bool shiftPressed = e.
Shift
;
System.Windows.Forms.Tests (1)
System\Windows\Forms\KeyEventArgsTests.cs (1)
28
Assert.Equal((keyData & Keys.Shift) == Keys.Shift, e.
Shift
);