14 references to Left
System.Windows.Forms (6)
System\Windows\Forms\Control.cs (2)
10523if (align == LeftRightAlignment.Left) 10529return LeftRightAlignment.Left;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (2)
472[DefaultValue(LeftRightAlignment.Left)] 478get => (_style & PInvoke.DTS_RIGHTALIGN) != 0 ? LeftRightAlignment.Right : LeftRightAlignment.Left;
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
874if (updownAlign == LeftRightAlignment.Left)
System\Windows\Forms\SystemInformation.cs (1)
619? LeftRightAlignment.Left : LeftRightAlignment.Right;
System.Windows.Forms.Tests (8)
System\Windows\Forms\ControlTests.Methods.cs (2)
6948yield return new object[] { RightToLeft.Yes, LeftRightAlignment.Left, LeftRightAlignment.Right }; 6949yield return new object[] { RightToLeft.Yes, LeftRightAlignment.Right, LeftRightAlignment.Left };
System\Windows\Forms\DateTimePickerTests.cs (4)
71Assert.Equal(LeftRightAlignment.Left, control.DropDownAlign); 356_dateTimePicker.DropDownAlign.Should().Be(LeftRightAlignment.Left); 361_dateTimePicker.DropDownAlign = LeftRightAlignment.Left; 362_dateTimePicker.DropDownAlign.Should().Be(LeftRightAlignment.Left);
System\Windows\Forms\UpDownBaseTests.cs (2)
1433yield return new object[] { borderStyle, rightToLeft, LeftRightAlignment.Left }; 1464yield return new object[] { borderStyle, rightToLeft, LeftRightAlignment.Left, 1 };