10 references to Left
System.Windows.Forms.Design (7)
System\Windows\Forms\Design\Behavior\ResizeBehavior.cs (1)
189
lines.Add(new SnapLine(SnapLineType.
Left
, loc.X));
System\Windows\Forms\Design\Behavior\SnapLine.cs (1)
87
public bool IsVertical => SnapLineType is SnapLineType.
Left
System\Windows\Forms\Design\Behavior\ToolboxItemSnapLineBehavior.cs (1)
234
new(SnapLineType.
Left
, r.Left),
System\Windows\Forms\Design\ControlCommandSet.cs (1)
488
lines.Add(new SnapLine(SnapLineType.
Left
, pt.X));
System\Windows\Forms\Design\ControlDesigner.cs (1)
354
snapLines.Add(new SnapLine(SnapLineType.
Left
, 0, SnapLinePriority.Low));
System\Windows\Forms\Design\LabelDesigner.cs (1)
79
if (snapLine is not null && snapLine.SnapLineType == (rtl ? SnapLineType.Right : SnapLineType.
Left
))
System\Windows\Forms\Design\ParentControlDesigner.cs (1)
848
new SnapLine(SnapLineType.
Left
, r.Right),
System.Windows.Forms.Design.Tests (3)
System\Windows\Forms\Design\Behavior\SnapLineTests.cs (2)
66
[InlineData(SnapLineType.
Left
, false)]
81
[InlineData(SnapLineType.
Left
, true)]
System\Windows\Forms\Design\ParentControlDesignerTests.cs (1)
44
.And.Contain(sl => sl.SnapLineType == SnapLineType.
Left
)