14 references to Low
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\Behavior\SnapLine.cs (2)
38: this(type, offset, filter: null, SnapLinePriority.Low) 46: this(type, offset, filter, SnapLinePriority.Low)
System\Windows\Forms\Design\ControlDesigner.cs (4)
352snapLines.Add(new SnapLine(SnapLineType.Top, 0, SnapLinePriority.Low)); 353snapLines.Add(new SnapLine(SnapLineType.Bottom, height - 1, SnapLinePriority.Low)); 354snapLines.Add(new SnapLine(SnapLineType.Left, 0, SnapLinePriority.Low)); 355snapLines.Add(new SnapLine(SnapLineType.Right, width - 1, SnapLinePriority.Low));
System.Windows.Forms.Design.Tests (8)
System\Windows\Forms\Design\Behavior\SnapLineTests.cs (8)
25Assert.Equal(SnapLinePriority.Low, snapLine.Priority); 36Assert.Equal(SnapLinePriority.Low, snapLine.Priority); 134SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, null, SnapLinePriority.Low); 143SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, DefaultFilter, SnapLinePriority.Low); 179SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, snapLine2Filter, SnapLinePriority.Low); 209SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, snapLine2Filter, SnapLinePriority.Low); 218SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, "custom filter", SnapLinePriority.Low); 227SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, "another filter", SnapLinePriority.Low);