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)
23Assert.Equal(SnapLinePriority.Low, snapLine.Priority); 34Assert.Equal(SnapLinePriority.Low, snapLine.Priority); 132SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, null, SnapLinePriority.Low); 141SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, DefaultFilter, SnapLinePriority.Low); 177SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, snapLine2Filter, SnapLinePriority.Low); 207SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, snapLine2Filter, SnapLinePriority.Low); 216SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, "custom filter", SnapLinePriority.Low); 225SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, "another filter", SnapLinePriority.Low);