我有一个这样定义的 ViewModel:
public class LocationTreeViewModel<TTree> :
ObservableCollection<TTree>, INotifyPropertyChanged
TTree : TreeBase<TTree>
我想在 XAMLDataType
中的 a 属性中引用它。DataTemplate
我怎样才能做到这一点?
我有一个这样定义的 ViewModel:
public class LocationTreeViewModel<TTree> :
ObservableCollection<TTree>, INotifyPropertyChanged
TTree : TreeBase<TTree>
我想在 XAMLDataType
中的 a 属性中引用它。DataTemplate
我怎样才能做到这一点?
不,您不能在 XAML 中表达泛型类型。您将必须创建一个扩展您的通用类型的具体类型......
public class FooLocationTreeViewModel : LocationTreeViewModel<Foo>
{
}
在 XAML 2006 中,这不受支持。但是,如果您想拥有此功能,您可以自行开发。
这个链接有一个很好的关于创建标记扩展的教程。
用法是这样的:
<Grid xmlns:ext="clr-namespace:CustomMarkupExtensions">
<TextBlock Text="{ext:GenericType FooLocationTreeViewModel(Of Foo)}" />
</Grid>
不过,您必须选择并实现语法。我建议使用 VB 表示法,因为它不会像 C# 表示法对 < 和 > 那样干扰。
我知道,我参加聚会有点晚了,但我想为所有将来可能会看到这个问题的人发布答案:
有可能的。
您可以在这个问题的答案中看到整个代码: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 自动选择定义的对象。
迟到并且不完全是问题的答案(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"/>
{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;
}
}