码迷,mamicode.com
首页 > 其他好文 > 详细

ToolBarTray与ToolBarPanel的区别

时间:2015-09-28 13:15:46      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:

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>

ToolBarTray与ToolBarPanel的区别

标签:

原文地址:http://www.cnblogs.com/chikenonachain/p/4843754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!