为非泛型集合的项目指定设计时类型

时间:2018-03-19 15:33:56

标签: c# wpf xaml

我试图指定所有.xaml文件的设计时DataContext,以便最大程度地利用Resharper及其重构和警告不存在的绑定的能力。我在使用非通用集合时遇到了麻烦。

请记住,在这篇文章中,一切都在运行时完美运行,这纯粹是一个设计时问题。

请考虑以下代码段:

MyList.cs

public class MyList : IList { ... }

MyClass.cs

public class MyClass {
    public string Name { get; set; }
    public string Description { get; set; }
}

MyViewModel.cs

public class MyViewModel {
    public MyList ItemsToDisplay { get; set; } // filled with items of type MyClass
}

MyWindow.xaml

<Window x:Class="MyWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
        xmlns:my="clr-namespace:MyNameSpace"
        mc:Ignorable="d" d:DataContext="{d:DesignInstance my:MyViewModel}">

    <telerik:RadGridView ItemsSource="{Binding ItemsToDisplay}">
        <telerik:RadGridView.Columns>
            <telerik:GridViewDataColumn DataMemberBinding="{Binding Name}" Header="Name"/>
            <telerik:GridViewDataColumn DataMemberBinding="{Binding Description}" Header="Description"/>
        </telerik:RadGridView.Columns>
    </telerik:RadGridView>

</Window>

此设置的问题是我在列的绑定上收到以下警告:Cannot resolve property 'Name' in context of type 'object'.

如果我将MyViewModel.cs更改为具有属性IList<MyClass> ItemsToDisplay,则Resharper将成功识别该集合具有MyClass类型的项目并正确解析datacontext,消除警告。但是,由于代码限制,我无法更改集合的类型。

所以我的问题是:是否有一些隐藏的xaml魔法允许我做这样的事情并指定集合的​​类型?伪代码:

<telerik:RadGridView ItemsSource="{Binding ItemsToDisplay, d:ItemsSourceType=my:MyClass}">

1 个答案:

答案 0 :(得分:0)

我建议您查看TypeDescriptor并为您的商品类型创建自定义类型描述符。不确定这会在您的具体情况下有效,但它至少可以尝试尝试。