ScrollBar.Orientation 属性

定义

获取或设置 ScrollBar 是水平显示还是垂直显示。

public:
 property System::Windows::Controls::Orientation Orientation { System::Windows::Controls::Orientation get(); void set(System::Windows::Controls::Orientation value); };
public System.Windows.Controls.Orientation Orientation { get; set; }
member this.Orientation : System.Windows.Controls.Orientation with get, set
Public Property Orientation As Orientation

属性值

Orientation

定义 Orientation 是水平显示还是垂直显示的一个 ScrollBar 枚举值。 默认值为 Vertical

示例

以下示例演示如何设置 Orientation 控件的属性 ScrollBar

myScrollBar.Orientation = Orientation.Horizontal;
myScrollBar.Orientation = Orientation.Horizontal
<ScrollBar Name="myScrollBar" Orientation="Horizontal"/>

注解

依赖项属性信息

标识符字段 OrientationProperty
元数据属性设置为 true

适用于

另请参阅