12

XAML 中的 DataTemplate 可以与嵌套类关联吗?

我正在开发一个 MVVM 应用程序,并且遇到了数据模板问题。我有一个视图模型,为项目控件提供其他视图模型的集合。这些项目是定义为外部视图模型中嵌套类的层次结构的一部分。到目前为止,我一直无法在 XAML 中创建一个映射来引用内部嵌套类。

这是类层次结构(为简洁起见):

public class MainViewModel
{
    public class A
    {
    }

    public class B : A
    {
    }

    public class C : A
    {
    }

    public ObservableCollection<A> Items
    {
        get;
        set;
    }
}

在 XAML 中,我试图将 DataTemplate 映射到类型 B 和 C,但我无法完全限定嵌套类名称。

<ItemsControl ItemsSource="{Binding Path=Items}">
    <ItemsControl.Resources>
        <DataTemplate DataType="{x:Type ns:BracingViewModel.B}">
            <Grid>
            ....
            </Grid>
        </DataTemplate>
        <DataTemplate DataType="{x:Type ns:BracingViewModel.C}">
            <Grid>
            ....
            </Grid>
        </DataTemplate>
    </ItemsControl.Resources>
</ItemsControl>

问题:对嵌套类的引用在 XAML 中显示为构建错误。我得到以下信息:

Error   5   Cannot find the type 'ns:B'. Note that type names are case sensitive. Line...

Error   5   Cannot find the type 'ns:C'. Note that type names are case sensitive. Line...

如果我将 A、B、C 类层次结构移到 MainViewModel 类之外(即到命名空间级别),这可以正常工作。

作为一般习惯,我尝试保持与视图模型相关的类定义为其中的嵌套类,但这导致我遇到了这个问题。

所以,我的问题是:甚至可以将 DataTemplate 与嵌套类相关联吗?如果是这样,在 XAML 部分中是如何完成的?

在此先感谢...乔

4

1 回答 1

34

这对我有用:

 <ItemsControl ItemsSource="{Binding Path=Items}">
        <ItemsControl.Resources>
            <DataTemplate DataType="{x:Type ns:MainViewModel+B}">
                <Grid Background="Blue"
                      Width="30"
                      Height="30">

                </Grid>
            </DataTemplate>
            <DataTemplate DataType="{x:Type ns:MainViewModel+C}">
                <Grid Background="Chartreuse" Width="30" Height="30">

                </Grid>
            </DataTemplate>
        </ItemsControl.Resources>
    </ItemsControl>

换句话说,只需.将标记扩展+中的x:Type

归功于:这个线程

于 2012-10-09T19:36:48.073 回答