9 references to DragSize
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGrid.cs (1)
4254
int dragHeight = SystemInformation.
DragSize
.Height;
winforms\Managed\System\WinForms\DataGridView.cs (1)
256
private static Size DragSize = SystemInformation.
DragSize
;
winforms\Managed\System\WinForms\ToolStripGrip.cs (1)
160
DragSize = SystemInformation.
DragSize
;
System.Workflow.ComponentModel (6)
AuthoringOM\Design\MessageFilters\ConnectionManager.cs (2)
125
(Math.Abs(this.initialDragPoint.Value.X - logicalPoint.X) > SystemInformation.
DragSize
.Width ||
126
Math.Abs(this.initialDragPoint.Value.Y - logicalPoint.Y) > SystemInformation.
DragSize
.Height))
AuthoringOM\Design\MessageFilters\DragDropManager.cs (2)
117
else if (parentView.RootDesigner != null && this.dragStarted && (eventArgs.Button & MouseButtons.Left) > 0 && (Math.Abs(this.dragInitiationPoint.X - logicalPoint.X) > SystemInformation.
DragSize
.Width || Math.Abs(this.dragInitiationPoint.Y - logicalPoint.Y) > SystemInformation.
DragSize
.Height))
AuthoringOM\Design\MessageFilters\DragSelectionMessageFilter.cs (2)
66
(Math.Abs(this.startDrag.X - logicalPoint.X) > (int)(dragMultiply * (float)SystemInformation.
DragSize
.Width) || Math.Abs(this.startDrag.Y - logicalPoint.Y) > (int)(dragMultiply * (float)SystemInformation.
DragSize
.Height)))