此问题与“How to reference a generic type in the DataType attribute of a HierarchicalDataTemplate?”
的答案密切相关我遵循了该答案的基本思路并创建了这个数据结构:
<!-- for DictItemVM<string, Remote.Address> which is a viewmodel for a KeyValuePair<...> -->
<x:Array Type="{x:Type sys:Type}"
x:Key="KVParamsStringToRemoteAddress"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:remote="clr-namespace:Remote"
xmlns:mvvm="clr-namespace:MVVM">
<x:Type TypeName="sys:String" />
<mvvm:GenericType BaseType="{x:Type TypeName=remote:Address}"/>
</x:Array>
<mvvm:GenericType xmlns:mvvm="clr-namespace:MVVM"
BaseType="{x:Type TypeName=mvvm:DictItemVM`2}"
InnerTypes="{StaticResource KVParamsStringToRemoteAddress}"
x:Key="DictItemVMOfStringToRemoteAddress"/>
DictItemVM<T,U>
是KeyValuePair<...>
的视图模型,派生自BaseVM。 BaseVM有一个DataTemplate视图,但我正在努力为DictItemVM<string, Remote.Address>
创建一个
Remote.Address是一种复杂的值类型(存储路径和访问信息)。 Remote.Address有自己的DataTemplate视图
所以现在我有了StaticResource“DictItemVMOfStringToRemoteAddress”,我想用它来指定一个DataTemplate:
<DataTemplate x:Key="TestKey" DataType="{StaticResource DictItemVMOfStringToRemoteAddress}">
<StackPanel>
<Label Content="UniqueName" />
<TextBox Text="{Binding UniqueName}" />
<Label Content="Key"/>
<TextBox Text="{Binding Key, Mode=OneWay}" IsEnabled="False" />
<Label Content="Value"/>
<ContentControl Content="{Binding Value, Mode=OneWay}" />
</StackPanel>
</DataTemplate>
现在,此DataTemplate 应该用作视图,而是显示BaseVM的视图。
有人给我一个暗示吗?
[编辑:2010-08-09]
我试过的一些事情:
在x:数组定义中我替换了
<mvvm:GenericType BaseType="{x:Type TypeName=remote:Address}"/>
与
<x:Type TypeName="remote:Address"/>
,
因为那基本上就是这样 - 没有区别。
还尝试在标签之间创建DataType(而不是链接到StaticResource),如下所示:
<DataTemplate x:Key="TestKey">
<DataTemplate.DataType>
<Binding>
<Binding.Source>
<mvvm:GenericType
BaseType="{x:Type TypeName=mvvm:DictItemVM`2}">
<mvvm:GenericType.InnerTypes>
<x:Type TypeName="sys:String" />
<x:Type TypeName="remote:Address"/>
</mvvm:GenericType.InnerTypes>
</mvvm:GenericType>
</Binding.Source>
</Binding>
</DataTemplate.DataType>
在GenericType.InnerTypes中使用和不使用x:数组进行尝试,两者都给出了this错误。
尝试从静态属性传递类型,如下所示:
DataType="{x:Static mvvm:StaticTypes.DictItemVMOfStringToRemoteAddress}"
并且像这样:
DataType="{Binding Path={x:Static mvvm:StaticTypes.DictItemVMOfStringToRemoteAddress}}"
没有区别。
奇怪的是,这个特定的DataTemplate需要有一些x:Key
值,而xaml资源文件中的所有其他值都指向常规类型,例如:DataType="{x:Type mvvm:EffectVM}"
。如果我删除x:Key,则会出现this错误。
答案 0 :(得分:1)
我找到了解决方案,但解决方案并不令人满意。
在XAML中,为要显示的每种KeyValuePair<T,U>
类型创建一个DataTemplate,并为其提供一些唯一的x:Key:
<DataTemplate x:Key="DictItemOfStringAndAddressVM">
<!-- ... -->
</DataTemplate>
然后在codebehind中,创建一个DataTemplateSelector并覆盖SelectTemplate:
public class GenericDataTemplateSelector : System.Windows.Controls.DataTemplateSelector
{
public override System.Windows.DataTemplate SelectTemplate(object item, System.Windows.DependencyObject container)
{
FrameworkElement element = container as FrameworkElement;
if ((element != null) && (item != null))
{
if (item is DictItemVM<string, Remote.Address>)
{
return element.FindResource("DictItemOfStringAndAddressVM") as DataTemplate;
}
else if(item is SomeOtherComplexType)
{
// ...
}
else return base.SelectTemplate(item, container);
}
return null;
}
}
再次在XAML中,将此类声明为资源:
<mvvm:GenericDataTemplateSelector x:Key="GenDataTempSelect"/>
最后,在ContentControl中(在我的例子中),添加属性:
ContentTemplateSelector="{StaticResource GenDataTempSelect}"
-
缺点:
优点: