6 references to MK_CONTROL
System.Windows.Forms (6)
winforms\Managed\System\WinForms\Control.cs (1)
14412
keyState |= (Keys)((UnsafeNativeMethods.GetKeyState((int)Keys.ControlKey) < 0) ? NativeMethods.
MK_CONTROL
: 0);
winforms\Managed\System\WinForms\RichTextBox.cs (5)
3895
keyState |= NativeMethods.
MK_CONTROL
;
3923
e.Effect = ((keyState & NativeMethods.
MK_CONTROL
) == NativeMethods.
MK_CONTROL
) ? DragDropEffects.Copy : DragDropEffects.Move;
4006
e.Effect = ((grfKeyState & NativeMethods.
MK_CONTROL
) == NativeMethods.
MK_CONTROL
) ? DragDropEffects.Copy : DragDropEffects.Move;