ToolBar.Orientation プロパティ

定義

ToolBar の向きを取得します。

public:
 property System::Windows::Controls::Orientation Orientation { System::Windows::Controls::Orientation get(); };
public System.Windows.Controls.Orientation Orientation { get; }
member this.Orientation : System.Windows.Controls.Orientation
Public ReadOnly Property Orientation As Orientation

プロパティ値

Orientation

ツール バーの向き。 既定値は、Horizontal です。

次の例は、a が垂直であるかどうかを判断する方法を ToolBar 示しています。

if (tb1.Orientation == Orientation.Vertical)
{
    btnText.Content = "This is a vertical toolbar.";
}
If tb1.Orientation = Orientation.Vertical Then
    btnText.Content = "This is a vertical toolbar."
End If

注釈

このプロパティは、親 ToolBarTrayから値を取得します。

依存プロパティ情報

識別子フィールド OrientationProperty
メタデータのプロパティが次に設定されている true なし

適用対象

こちらもご覧ください