WPF:如何设置内容控件的数据模板触发器?

时间:2011-04-24 15:17:56

标签: wpf xaml

我想创建一个包含一个组合框和一个内容控件的用户控件。在组合框中进行的选择应确定内容控件将使用的数据模板。我读过this article,它几​​乎证明了我要实现的目标。

组合框中填充了enum ModelType值,可以是PersonCompany。如果用户选择Person,则内容控件应使用personTemplate数据模板;和companyTemplate Company

我遇到了内容控件的XAML代码。这是我创造的,但我无法使其发挥作用:

<UserControl.Resources>
  ...
  <DataTemplate x:Key="personTemplate" ...>
  <DataTemplate x:Key="companyTemplate" ...>
  ...
</UserControl.Resources>
...
<ContentControl x:Name="Account">
  <ContentControl.ContentTemplate>
    <DataTemplate>
      <DataTemplate.Triggers>
        <DataTrigger Binding="{Binding AccountType}" Value="Person">
        <!-- I doubt the Value property is set correctly. -->
        <!-- It should be a value of an enum ModelType -->
          <Setter 
              TargetName="Account" 
              Property="ContentTemplate" 
              Value="{StaticResource personTemplate}" />
          <!-- The setter is unaware of the target name, i.e. content control -->
        </DataTrigger>
        <DataTrigger Binding="{Binding AccountType}" Value="Company">
          <Setter 
              TargetName="Account" 
              Property="ContentTemplate" 
              Value="{StaticResource companyTemplate}" />
        </DataTrigger>
      </DataTemplate.Triggers>
    </DataTemplate>
  </ContentControl.ContentTemplate>                    
</ContentControl>

请帮助,谢谢。

1 个答案:

答案 0 :(得分:83)

我实际上已经开始工作了。 :)

以下是XAML应该是什么样子:

<ContentControl Content="{Binding}">
  <ContentControl.Style>
    <Style TargetType="ContentControl">
      <Style.Triggers>
        <DataTrigger Binding="{Binding AccountType}" Value="Person">
          <Setter Property="ContentTemplate" Value="{StaticResource personTemplate}" />
        </DataTrigger>
        <DataTrigger Binding="{Binding AccountType}" Value="Company">
          <Setter Property="ContentTemplate" Value="{StaticResource companyTemplate}" />
        </DataTrigger>
      </Style.Triggers>
    </Style>
  </ContentControl.Style>
</ContentControl>

枚举的值也很有效。我希望这可以帮助一些有需要的人。