标签:
ToolBarPanel 类:在ToolBar中排列ToolBar项。
e.g.
<ToolBarTray>
<ToolBar>
<Button/>
<Button/>
</ToolBar>
</ToolBarTray>
ToolBarTray 类:表示处理ToolBar 的布局的容器。用于ToolBar控件模板之中。
e.g.
<Style x:key="MainToolBar" TargetType="{x:Type ToolBar}">
<Setter Property="OverridesDefaultStyle" Value="True"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ToolBar}">
<Border>
<ToolBarPanel IsItemHost="True" />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
标签:
原文地址:http://www.cnblogs.com/chikenonachain/p/4843754.html