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