3

得到一个内部有很多对象的视图,这些对象从 DataTemplate 声明中获取它们的视图:

<DataTemplate DataType="{x:Type vm:StatusAViewModel}" >
    <vw:StatusAView />
</DataTemplate>

<DataTemplate DataType="{x:Type vm:StatusBViewModel}" >
    <vw:StatusBView />
</DataTemplate>

现在我想根据要包含的数据类型显示一个包含其内容的弹出窗口:

<Popup AllowsTransparency="True"
       IsOpen="{Binding IsPopupOpen,Mode=OneWay}" 
       PlacementTarget="{Binding PopupPlacementElement}" Placement="{Binding PopupPlacementMode}"
       HorizontalOffset="{Binding PopupHOffset}" VerticalOffset="{Binding PopupVOffset}">
    <ContentPresenter x:Name="StuckHere" Content="{Binding PopupData}" />
</Popup>

StuckHere 上的 ContentTemplateSelector 不起作用,因为它只评估一次,并且当 PopupData 更改时,不会重新选择模板。

我能找到的所有示例都依赖于默认数据模板,我不能在我的情况下使用它,因为我已经为主视图设置了默认数据模板,我只希望这个不同的模板影响我的弹出窗口。

有什么线索吗?

4

2 回答 2

8

您可以应用一组不同的DataTemplatesin ,这将覆盖在可视树中定义较高的那些并仅<Popup.Resources>应用于Popup

<Window.Resources>
    <DataTemplate DataType="{x:Type vm:StatusAViewModel}" >
        <vw:StatusAView />
    </DataTemplate>
    <DataTemplate DataType="{x:Type vm:StatusBViewModel}" >
        <vw:StatusBView />
    </DataTemplate>
</Window.Resources>

<Popup>
    <Popup.Resources>
        <DataTemplate DataType="{x:Type vm:StatusAViewModel}" >
            <vw:StatusAPopupView />
        </DataTemplate>
        <DataTemplate DataType="{x:Type vm:StatusBViewModel}" >
            <vw:StatusBPopupView />
        </DataTemplate>
    </Popup.Resources>

    <!-- The DataTeplate used here will be a PopupView, not the regular View -->
    <ContentPresenter Content="{Binding PopupData}" />
</Popup>
于 2012-08-22T19:41:40.430 回答
0

您可以查看http://msdn.microsoft.com/en-us/library/system.windows.controls.datatemplateselector.aspx。实现从 DateTemplateSelector 派生的模板选择器并使用 ContentControl。将 Content 绑定到 DataObject 并将ContentTemplateSelectorTemplate绑定到 TemplateSelector。

于 2012-08-22T19:53:28.143 回答