27

我有一个这样定义的 ViewModel:

public class LocationTreeViewModel<TTree> : 
    ObservableCollection<TTree>, INotifyPropertyChanged
        TTree : TreeBase<TTree>

我想在 XAMLDataType中的 a 属性中引用它。DataTemplate我怎样才能做到这一点?

4

9 回答 9

16

不,您不能在 XAML 中表达泛型类型。您将必须创建一个扩展您的通用类型的具体类型......

public class FooLocationTreeViewModel : LocationTreeViewModel<Foo>
{
}
于 2012-04-04T05:38:41.617 回答
3

在 XAML 2006 中,这不受支持。但是,如果您想拥有此功能,您可以自行开发。

这个链接有一个很好的关于创建标记扩展的教程。

用法是这样的:

<Grid xmlns:ext="clr-namespace:CustomMarkupExtensions">
  <TextBlock Text="{ext:GenericType FooLocationTreeViewModel(Of Foo)}" />
</Grid>

不过,您必须选择并实现语法。我建议使用 VB 表示法,因为它不会像 C# 表示法对 < 和 > 那样干扰。

于 2012-04-04T05:46:05.573 回答
3

我知道,我参加聚会有点晚了,但我想为所有将来可能会看到这个问题的人发布答案:

有可能的。

您可以在这个问题的答案中看到整个代码:DataTemplates and Generics。但由于它很长,我将复制重要的部分。如果您想了解更多详细信息,请查看引用的问题。

  1. 您需要编写一个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;
        }
    }
    
  2. 现在您可以在 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>
    
  3. 很高兴DataTemplateWPF 自动选择定义的对象。

于 2019-08-05T15:46:10.483 回答
1

迟到并且不完全是问题的答案(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}" />
于 2020-04-14T08:24:11.630 回答
0

我刚刚实现了一个肯定不够完美的解决方法,并且确实需要在您的 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 父级是通用的,所以您不应该遇到类型参数之间的差异导致任何问题的任何实际情况。

于 2020-06-05T13:31:33.050 回答
0

以下解决方案对我有用:

<DataTemplate>
    <DataTemplate.DataType>
        <x:Type Type="ns:MyGenericClass`1"/>
    </DataTemplate.DataType>
</DataTemplate>

将 `1 替换为您拥有的通用参数的数量,例如:

public class MyGenericClass<TParent, TChild>

将被宣布:

<x:Type Type="ns:MyGenericClass`2"/>
于 2021-11-18T13:47:50.547 回答
-1

{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,因此您的里程可能会有所不同。

于 2018-06-06T02:17:29.007 回答
-2

我能做到这一点的唯一方法是使用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}">
于 2013-12-12T12:42:04.540 回答
-2

略微改进的 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;
    }

  }
于 2015-01-22T10:27:46.920 回答