我有一个像这样定义的 ViewModel:
public class LocationTreeViewModel<TTree> :
ObservableCollection<TTree>, INotifyPropertyChanged
TTree : TreeBase<TTree>
我想在 XAML 中
DataType
的 DataTemplate
属性中引用它。我怎样才能做到这一点?
不,您不能在 XAML 中表达泛型类型。您必须创建一种具体类型来扩展您的通用类型......
public class FooLocationTreeViewModel : LocationTreeViewModel<Foo>
{
}
我知道,我来晚了一点,但我想为所有将来可能看到这个问题的人发布一个答案:
这是可能的。
您可以在这个问题的答案中看到完整的代码:DataTemplates and Generics。不过由于篇幅较长,所以我只复制重要的部分。如果您想了解更多详细信息,请查看引用的问题。
您需要编写一个
MarkupExtension
,它可以提供封闭的泛型类型。
public class GenericType : MarkupExtension
{
public GenericType() { }
public GenericType(Type baseType, params Type[] innerTypes)
{
BaseType = baseType;
InnerTypes = innerTypes;
}
public Type BaseType { get; set; }
public Type[] InnerTypes { get; set; }
public override object ProvideValue(IServiceProvider serviceProvider)
{
Type result = BaseType.MakeGenericType(InnerTypes);
return result;
}
}
现在您可以在 xaml 中定义封闭泛型类型的类型,然后使用封闭泛型类型作为
DataType
的 DataTemplate
。
<Window.Resources>
<x:Array Type="{x:Type System:Type}"
x:Key="ListWithTwoStringTypes">
<x:Type TypeName="System:String" />
<x:Type TypeName="System:String" />
</x:Array>
<WpfApp1:GenericType BaseType="{x:Type TypeName=Generic:Dictionary`2}"
InnerTypes="{StaticResource ListWithTwoStringTypes}"
x:Key="DictionaryStringString" />
<DataTemplate DataType="{StaticResource DictionaryStringString}">
<TextBlock Text="Hi Dictionary"
FontSize="40"
Foreground="Cyan"/>
</DataTemplate>
</Window.Resources>
很高兴定义的
DataTemplate
被 WPF 自动选择。在 XAML 2006 中不支持此功能。但是,如果您想拥有此功能,您可以自己推出。
此链接有一个关于创建标记扩展的很好的教程。
用法如下:
<Grid xmlns:ext="clr-namespace:CustomMarkupExtensions">
<TextBlock Text="{ext:GenericType FooLocationTreeViewModel(Of Foo)}" />
</Grid>
不过,您必须选择并实现语法。我建议使用 VB 表示法,因为它不会像 C# 表示法那样干扰 < and >。
晚了而且不完全是问题的答案(CollinE 和 Bas 已经说过这实际上是不可能的)...但是,也许替代解决方案可能对其他人有帮助:
可以使用这样的 TemplateSelector 来解析泛型类型:
模板选择器
public class MyTemplateSelector : DataTemplateSelector
{
public override DataTemplate SelectTemplate(object item, DependencyObject container)
{
var genericType = typeof(MyGenericType<>);
var isMyGeneric = item?.GetType().GetGenericTypeDefinition() == genericType;
return isMyGeneric ? MyTemplate : OtherTemplate;
}
public DataTemplate MyTemplate { get; set; }
public DataTemplate OtherTemplate { get; set; }
}
XAML
<UserControl.Resources>
<DataTemplate x:Key="MyTemplate">
<!-- Set Up MyTemplate -->
</DataTemplate>
<DataTemplate x:Key="OtherTemplate">
<!-- Set Up OtherTemplate -->
</DataTemplate>
<local:MyTemplateSelector x:Key="MyTemplateSelector"
MyTemplate="{StaticResource MyTemplate}"
OtherTemplate="{StaticResource MyTemplate}" />
</UserControl.Resources>
...
<ContentControl ContentTemplateSelector="{StaticResource MyTemplateSelector}"
Content="{Binding ViewModel}" />
我刚刚实现了一个肯定不太完美的解决方法,并且确实需要在 ViewModel 中添加一些代码(因为 VM 不应该知道视图,所以违反了严格的 MVVM)。
定义泛型类型,然后定义该类型的类,并将最低共同祖先作为类型参数:
class GenericClass<T> { }
class Class1 : GenericClass<Apples> { }
class Class2 : GenericClass<Oranges> { }
class WorkaroundClass : GenericClass<Fruit> { }
在您的视图模型中,您需要将绑定成员声明为祖先类型,然后进行强制转换。
// instead of:
// Apple DisplayFruit => GetGrannySmith();
Fruit DisplayFruit => (Fruit)GetGrannySmith();
在您的 xaml 中,您可以将数据模板绑定到祖先类:
<DataTemplate DataType="{x:Type WorkaroundClass}"/>
我非常确定,因为 Generic 父级是通用的,所以您不应该遇到类型参数之间的差异导致任何问题的任何实际情况。
以下解决方案对我有用:
<DataTemplate>
<DataTemplate.DataType>
<x:Type Type="ns:MyGenericClass`1"/>
</DataTemplate.DataType>
</DataTemplate>
将 `1 替换为您拥有的通用参数数量,例如:
public class MyGenericClass<TParent, TChild>
将宣布:
<x:Type Type="ns:MyGenericClass`2"/>
令人惊讶的是,这工作正常:
<DataTemplate DataType="GenericClass<TypeArgument1,TypeArgument2>">
只需复制 C# 类型并将
<
替换为 <
,将 >
替换为 >
(这些是 XML 转义序列)
在静态类中定义泛型类型。
public static GenericTypes {
public static Type TreeViewOfITreeItem => typeof(TreeView<ITreeItem>);
}
然后在DataTemplate中使用它。
<DataTemplate DataType="{x:Static mhui:GenericTypes.TreeViewOfITreeItem}">
{x:Type} 标记扩展支持允许将泛型类型参数指定为括号中的逗号分隔列表。
这是一个例子:
<UserControl x:Class="Test"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:generic="clr-namespace:System.Collections.Generic;assembly=mscorlib"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<UserControl.Resources>
<DataTemplate DataType="{x:Type generic:List(sys:Int64)}">
<TextBlock Text="{Binding Count}"/>
</DataTemplate>
</UserControl.Resources>
</UserControl>
我在 VS 2015 上使用 .Net 4.5,所以你的情况可能会有所不同。
我能做到这一点的唯一方法是使用
MarkupExtensions
。
public class GenericType : MarkupExtension
{
private readonly Type _of;
public GenericType(Type of)
{
_of = of;
}
public override object ProvideValue(IServiceProvider serviceProvider)
{
return typeof(LocationTreeViewModel<>).MakeGenericType(_of);
}
}
要使用它,我只需要这样做:
<DataTemplate DataType="{app:GenericType app:TreeBaseClass}">
MarkupExtension 的略微改进版本,适用于最多 3 个通用参数的类。
public class GenericTypeExtension : MarkupExtension
{
public GenericTypeExtension()
{
}
public GenericTypeExtension(string baseTypeName_, Type genericType1_, Type genericType2_, Type genericType3_)
{
BaseTypeName = baseTypeName_;
GenericType1 = genericType1_;
GenericType2 = genericType2_;
GenericType3 = genericType3_;
}
public string BaseTypeName { get; set; }
public string BaseTypeAssemblyName { get; set; }
public Type GenericType1 { get; set; }
public Type GenericType2 { get; set; }
public Type GenericType3 { get; set; }
public override object ProvideValue(IServiceProvider serviceProvider_)
{
var list = new List<Type>();
if (GenericType1 != null)
{
list.Add(GenericType1);
}
if (GenericType2 != null)
{
list.Add(GenericType2);
}
if (GenericType3 != null)
{
list.Add(GenericType3);
}
var type = Type.GetType(string.Format("{0}`{1}, {2}", BaseTypeName, list.Count, BaseTypeAssemblyName));
if (type != null)
{
return type.MakeGenericType(list.ToArray());
}
return null;
}
}