Orientation 列挙型

定義

コントロールまたはレイアウトで可能な、異なる方向を定義します。

public enum class Orientation
[System.Windows.Localizability(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)]
public enum Orientation
[<System.Windows.Localizability(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)>]
type Orientation = 
Public Enum Orientation
継承
Orientation
属性

フィールド

Horizontal 0

コントロールまたはレイアウトを水平方向に配置する必要があります。

Vertical 1

コントロールまたはレイアウトを垂直方向に配置する必要があります。

この例では、列挙値を Orientation 使用して垂直方向 ScrollBarの値を作成する方法を示します。

<ScrollBar Height="200" Orientation="Vertical"/>

適用対象