ScrollBar.Orientation 属性

定义

获取或设置一个值,该值指示 滚动条 是水平显示还是垂直显示。

public:
 property Orientation Orientation { Orientation get(); void set(Orientation value); };
Orientation Orientation();

void Orientation(Orientation value);
public Orientation Orientation { get; set; }
var orientation = scrollBar.orientation;
scrollBar.orientation = orientation;
Public Property Orientation As Orientation
<ScrollBar Orientation="Horizontal"/>
-or-
<ScrollBar Orientation="Vertical"/>

属性值

一个 Orientation 枚举值,该值定义滚动条是水平显示还是垂直显示。 默认值为 Horizontal。 特定控件模板可能会更改此值,这将导致模板化值成为明显的运行时默认值。

适用于