ToolBarTray.Orientation プロパティ

定義

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

適用対象

こちらもご覧ください