To check whether a modifier key is currently in a pressed state use the static function Control. ModifierKeys
Example:
if ((Control.ModifierKeys & Keys.Shift) == Keys.Shift)
{
..
}
To check whether a modifier key is currently in a pressed state use the static function Control. ModifierKeys
Example:
if ((Control.ModifierKeys & Keys.Shift) == Keys.Shift)
{
..
}