ToolBar.BandIndex プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ツール バーのバンドでの位置を示すバンド インデックス番号を取得または設定します。
public:
property int BandIndex { int get(); void set(int value); };
public int BandIndex { get; set; }
member this.BandIndex : int with get, set
Public Property BandIndex As Integer
プロパティ値
ToolBarTray のバンドでのツール バーの位置。
例
次の例では、このプロパティを使用して 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>
注釈
このプロパティを明示的に設定しない場合、その値は、 で ToolBarTrayが設定されるToolBar順序によって決まります。 たとえば、 プロパティと BandIndex プロパティを設定Bandせずに に ToolBarTray 2 つのツール バーを配置した場合、両方のツール バーの Band 値は 0 になります。 の値は、最初の BandIndex ツール バーの場合は 0、2 番目のツール バーの場合は 1 になります。
内の ToolBarTray のToolBar位置は、および BandIndex プロパティのToolBarTray.OrientationBand値によって異なります。 が にHorizontal設定されている場合Orientation、バンドは 内の行をToolBarTray表します。 が の場合Orientation、バンドは の列を表しますToolBarTray。Vertical 次の表では、および の間OrientationBandのリレーションシップについて説明しますBandIndex。
方向 | Band | BandIndex |
---|---|---|
水平 | が配置されている行を ToolBar 示します。 小さい値に設定されている Band ツール バーは、より大きな値を持つツール バーの上にあります。 | 上の の ToolBar 位置を示します Band。 小さい値に設定されている BandIndex ツール バーは、より大きな値を持つツール バーの左側にあります。 |
Vertical | が配置されている列を ToolBar 示します。 小さい値に設定されている Band ツール バーは、より大きな値を持つツール バーの左側にあります。 | 上の の ToolBar 位置を示します Band。 小さい値に設定されている BandIndex ツール バーは、より大きな値を持つツール バーの上にあります。 |
依存プロパティ情報
識別子フィールド | BandIndexProperty |
に設定されたメタデータ プロパティ true |
AffectsParentMeasure |
適用対象
こちらもご覧ください
.NET