27 references to SnapDirection
System.Windows.Forms.Design (20)
System\Windows\Forms\Design\Behavior\ToolboxItemSnapLineBehavior.cs (12)
105ToolboxSnapDragDropEventArgs.SnapDirection snapDirections = ToolboxSnapDragDropEventArgs.SnapDirection.None; 126snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Left; 132snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Right; 144snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Top; 150snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Bottom; 166snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Top; 172snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Bottom; 184snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Left; 190snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Right; 209snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Left; 215snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Top;
System\Windows\Forms\Design\Behavior\ToolboxSnapDragDropEventArgs.cs (2)
21public ToolboxSnapDragDropEventArgs(SnapDirection snapDirections, Point offset, DragEventArgs origArgs) 32public SnapDirection SnapDirections { get; }
System\Windows\Forms\Design\DesignerUtils.cs (6)
572if ((e.SnapDirections & ToolboxSnapDragDropEventArgs.SnapDirection.Top) != 0) 576else if ((e.SnapDirections & ToolboxSnapDragDropEventArgs.SnapDirection.Bottom) != 0) 584if ((e.SnapDirections & ToolboxSnapDragDropEventArgs.SnapDirection.Left) != 0) 588else if ((e.SnapDirections & ToolboxSnapDragDropEventArgs.SnapDirection.Right) != 0) 596if ((e.SnapDirections & ToolboxSnapDragDropEventArgs.SnapDirection.Left) != 0) 601else if ((e.SnapDirections & ToolboxSnapDragDropEventArgs.SnapDirection.Right) != 0)
System.Windows.Forms.Design.Tests (7)
System\Windows\Forms\Design\DesignerUtilsTests.cs (7)
511[InlineData(0, 0, 100, 100, 10, 10, ToolboxSnapDragDropEventArgs.SnapDirection.Top, false, 0, 10)] 512[InlineData(0, 0, 100, 100, 10, 10, ToolboxSnapDragDropEventArgs.SnapDirection.Bottom, false, 0, -90)] 513[InlineData(0, 0, 100, 100, 10, 10, ToolboxSnapDragDropEventArgs.SnapDirection.Left, false, 10, 0)] 514[InlineData(0, 0, 100, 100, 10, 10, ToolboxSnapDragDropEventArgs.SnapDirection.Right, false, -90, 0)] 515[InlineData(0, 0, 100, 100, 10, 10, ToolboxSnapDragDropEventArgs.SnapDirection.Top, true, 0, 10)] 516[InlineData(0, 0, 100, 100, 10, 10, ToolboxSnapDragDropEventArgs.SnapDirection.Right, true, -10, 0)] 524ToolboxSnapDragDropEventArgs.SnapDirection snapDirection,