Wpf从资源中重用UI元素_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > Wpf从资源中重用UI元素

Wpf从资源中重用UI元素

 2014/7/12 3:15:28  明月几时有25  程序员俱乐部  我要评论(0)
  • 摘要:在我的界面上有几个选项卡,每个选项卡中都有下面的元素:<StackPanelOrientation="Horizontal"><ButtonContent="&lt;"Command="{BindingMoveToPreviousCommand}"/><ButtonContent="&gt;"Command="{BindingMoveToNextCommand}"/></StackPanel>
  • 标签:资源

在我的界面上有几个选项卡,每个选项卡中都有下面的元素:

class="lang-xml prettyprint prettyprinted"><StackPanel Orientation="Horizontal">
     <Button Content="&lt;" Command="{Binding MoveToPreviousCommand}" /> 
     <Button Content="&gt;" Command="{Binding MoveToNextCommand}" />
</StackPanel>

有没有办法避免复制此代码到XAML中每个选项卡中,能不能在资源中定义一次上面的元素,每个选项卡都指向UI资源呢?答案是肯定的。

<Window.Resources>       
    <StackPanel x:Key="Content" Orientation="Horizontal">
        <Button Content="&lt;" Command="{Binding MoveToPreviousCommand}" /> 
        <Button Content="&gt;" Command="{Binding MoveToNextCommand}" />
    </StackPanel>

    <DataTemplate x:Key="template1">
        <StackPanel  Orientation="Horizontal">
            <Button Content="&lt;" Command="{Binding MoveToPreviousCommand}" /> 
            <Button Content="&gt;" Command="{Binding MoveToNextCommand}" />
        </StackPanel>
    </DataTemplate>
</Window.Resources>

<StackPanel>
    <ContentControl Content="{StaticResource Content}"></ContentControl>
    <ContentControl Name="contCtrl" ContentTemplate="{StaticResource template1}" Content="This is the content of the content control."/>
</StackPanel>
发表评论
用户名: 匿名