我有一个ViewModel,我创建了一个bool DisplaySummary
属性。如果是这样,则使用SummaryView
来呈现该ViewModel,否则将使用DatailedView
。
我对如何从这里开始表示怀疑:
<DataTemplate DataType="{x:Type vm:AwesomeViewModel}">
<ContentControl Content="{Binding}">
<ContentControl.Style>
<Style>
#### WHAT I SHOULD PUT HERE?
</Style>
</ContentControl.Style>
</ContentControl>
</DataTemplate>
<DataTemplate x:Key="SummaryTemplate">
<vw:SummaryViewScreen />
</DataTemplate>
<DataTemplate x:Key="DetailedTemplate">
<vw:DetailedViewScreen />
</DataTemplate>
编辑:起初我尝试使用DataTemplateSelector
,但由于它没有响应PropertyChanged,我不得不使用DataTriggers。
答案 0 :(得分:6)
使用DataTrigger
切换ContentTemplate
:
<DataTemplate DataType="{x:Type vm:AwesomeViewModel}">
<ContentControl Content="{Binding}">
<ContentControl.Style>
<Style TargetType="ContentControl">
<Setter Property="ContentTemplate"
Value="{StaticResource DetailedTemplate}"/>
<Style.Triggers>
<DataTrigger Binding="{Binding DisplaySummary}" Value="True">
<Setter Property="ContentTemplate"
Value="{StaticResource SummaryTemplate}"/>
</DataTrigger>
</Style.Triggers>
</Style>
</ContentControl.Style>
</ContentControl>
</DataTemplate>