ToolBarTray.Orientation プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ToolBarTray の向きを指定します。
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 値のいずれか 1 つ。 既定値は、Horizontal です。
例
次の例は、 Orientation プロパティを使用してツール バー トレイの向きを設定する方法を示しています。これにより、ツール バーの向きが決まります。
<ToolBarTray Orientation="Vertical"
Background="White" >
<ToolBar Band="1" BandIndex="1">
<Button>
<Image Source="toolbargraphics\copy.bmp" />
</Button>
<Button>
<Image Source="toolbargraphics\paste.bmp" />
</Button>
</ToolBar>
<ToolBar Band="2" BandIndex="1">
<Button>
<Image Source="toolbargraphics\undo.bmp" />
</Button>
<Button>
<Image Source="toolbargraphics\redo.bmp" />
</Button>
</ToolBar>
</ToolBarTray>
注釈
依存プロパティ情報
識別子フィールド | OrientationProperty |
に設定されたメタデータ プロパティ true |
AffectsParentMeasure |
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET