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)
352
snapLines.Add(new SnapLine(SnapLineType.Top, 0, SnapLinePriority.
Low
));
353
snapLines.Add(new SnapLine(SnapLineType.Bottom, height - 1, SnapLinePriority.
Low
));
354
snapLines.Add(new SnapLine(SnapLineType.Left, 0, SnapLinePriority.
Low
));
355
snapLines.Add(new SnapLine(SnapLineType.Right, width - 1, SnapLinePriority.
Low
));
System.Windows.Forms.Design.Tests (8)
System\Windows\Forms\Design\Behavior\SnapLineTests.cs (8)
23
Assert.Equal(SnapLinePriority.
Low
, snapLine.Priority);
34
Assert.Equal(SnapLinePriority.
Low
, snapLine.Priority);
132
SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, null, SnapLinePriority.
Low
);
141
SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, DefaultFilter, SnapLinePriority.
Low
);
177
SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, snapLine2Filter, SnapLinePriority.
Low
);
207
SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, snapLine2Filter, SnapLinePriority.
Low
);
216
SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, "custom filter", SnapLinePriority.
Low
);
225
SnapLine snapLine2 = new(SnapLineType.Top, DefaultOffset, "another filter", SnapLinePriority.
Low
);