2 writes to DragBoxFromMouseDown
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ToolStripItemBehavior.cs (2)
982parentDesigner.DragBoxFromMouseDown = _dragBoxFromMouseDown = new Rectangle(new Point(mouseLoc.X - (dragSize.Width / 2), mouseLoc.Y - (dragSize.Height / 2)), dragSize); 987parentDesigner.DragBoxFromMouseDown = _dragBoxFromMouseDown = Rectangle.Empty;
3 references to DragBoxFromMouseDown
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ToolStripItemBehavior.cs (1)
552dragBox = parentDesigner.DragBoxFromMouseDown;
System.Windows.Forms.Design.Tests (2)
ToolStripDesignerTests.cs (2)
53Assert.IsType<Rectangle>(toolStripDesigner.DragBoxFromMouseDown); 54Assert.Equal(Rectangle.Empty, toolStripDesigner.DragBoxFromMouseDown);