7 references to Orientation
System.Windows.Forms (6)
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (2)
784
int maxTickCount = (
Orientation
== Orientation.Horizontal ? Size.Width : Size.Height) / 2;
1144
int size =
Orientation
== Orientation.Horizontal ? Size.Width : Size.Height;
System\Windows\Forms\Controls\TrackBar\TrackBar.TrackBarFirstButtonAccessibleObject.cs (2)
23
: owner.
Orientation
== Orientation.Horizontal && (owner.RightToLeft == RightToLeft.No || parent.IsMirrored)
41
return owner.
Orientation
== Orientation.Vertical || parent.RTLLayoutDisabled
System\Windows\Forms\Controls\TrackBar\TrackBar.TrackBarLastButtonAccessibleObject.cs (2)
23
: owner.
Orientation
== Orientation.Horizontal && (owner.RightToLeft == RightToLeft.No || parent.IsMirrored)
50
return owner.
Orientation
== Orientation.Vertical || parent.RTLLayoutDisabled
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\TrackBarDesigner.cs (1)
24
var orientation = GetPropertyValue<Orientation?>(Component, nameof(TrackBar.
Orientation
)) ?? Orientation.Horizontal;