ToolBar.Band プロパティ

定義

ToolBarTray 内でツール バーを配置する位置を示す値を取得または設定します。

public:
 property int Band { int get(); void set(int value); };
public int Band { get; set; }
member this.Band : int with get, set
Public Property Band As Integer

プロパティ値

ツール バーが配置される ToolBarTray のバンド。 既定値は 0 です。

次の例では、このプロパティを使用して ToolBar コントロールを ToolBarTray 内に配置する方法を示します。

<ToolBarTray Background="White">
  <ToolBar Band="1" BandIndex="1">
    <Button>
      <Image Source="toolbargraphics\cut.bmp" />
    </Button>
    <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>
  <ToolBar Band="2" BandIndex="2">
    <Button>
      <Image Source="toolbargraphics\paint.bmp" />
    </Button>
    <Button>
      <Image Source="toolbargraphics\spell.bmp" />
    </Button>
    <Separator/>
    <Button>
      <Image Source="toolbargraphics\save.bmp" />
    </Button>
    <Button>
      <Image Source="toolbargraphics\open.bmp" />
    </Button>
  </ToolBar>
</ToolBarTray>

注釈

内の ToolBarTrayToolBar位置は、および BandIndex プロパティのToolBarTray.OrientationBand値によって異なります。 が にHorizontal設定されている場合Orientation、バンドは 内の行をToolBarTray表します。 が の場合Orientation、バンドは の列を表しますToolBarTrayVertical 次の表では、および の間OrientationBandのリレーションシップについて説明しますBandIndex

方向 Band BandIndex
水平 が配置されている行を ToolBar 示します。 小さい値に設定されている Band ツール バーは、より大きな値を持つツール バーの上にあります。 上の の ToolBar 位置を示します Band。 小さい値に設定されている BandIndex ツール バーは、より大きな値を持つツール バーの左側にあります。
Vertical が配置されている列を ToolBar 示します。 小さい値に設定されている Band ツール バーは、より大きな値を持つツール バーの左側にあります。 上の の ToolBar 位置を示します Band。 小さい値に設定されている BandIndex ツール バーは、より大きな値を持つツール バーの上にあります。

依存プロパティ情報

識別子フィールド BandProperty
に設定されたメタデータ プロパティ true AffectsParentMeasure

適用対象

こちらもご覧ください