1 write to startDrag
System.Workflow.ComponentModel (1)
AuthoringOM\Design\MessageFilters\DragSelectionMessageFilter.cs (1)
49this.startDrag = this.endDrag = ParentView.ClientPointToLogical(new Point(eventArgs.X, eventArgs.Y));
6 references to startDrag
System.Workflow.ComponentModel (6)
AuthoringOM\Design\MessageFilters\DragSelectionMessageFilter.cs (6)
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))) 134return new Rectangle(Math.Min(this.startDrag.X, this.endDrag.X), Math.Min(this.startDrag.Y, this.endDrag.Y), Math.Abs(this.endDrag.X - this.startDrag.X), Math.Abs(this.endDrag.Y - this.startDrag.Y));