1

我正在尝试在我的 MVVM 项目中掌握 VS2010(不是 Blend)的设计数据。

我让它适用于顶级 VM 属性,但集合有问题。我使用 DevForce 进行数据建模,所以理想情况下我的 XAML 应该如下所示:

<MaintainTruckViewModel 
    xmlns="clr-namespace:IDATT.Module.Assets.Views"
    xmlns:data="clr-namespace:IDATT.Model;assembly=IDATT.Model.SL">
    <MaintainTruckViewModel.CurrentItem>
        <data:ASTTruck
            TruckId="1000"
            ExternalTruckId="T1000"
            IsActive="True"
            VinNumber="1ZAXBV"
            Make="Volvo"
            Model="ABC"
            MakeYear="2010"
            PlateNumber="ABC 123"
            PlateIssueAdministrativeArea="MO"
            Height="110"
            AxlesCount="3">
            <data:ASTTruck.ASTInsurances>
                <data:ASTInsurance
                    InsuranceKey="1"
                    CompanyName="MainCo"
                    AgentCompanyName="Joes insurance"
                    CoverageAmount = "1000000"
                    DeductibleAmount = "1000"
                    InsuranceType = "General liability"
                    IsActive = "True"
                    PolicyNumber = "123ABC"
                    ExpireOn = "01-01-2012"
                    Note = "This insurance covers all stuff"/>
            </data:ASTTruck.ASTInsurances>
        </data:ASTTruck>
    </MaintainTruckViewModel.CurrentItem>
</MaintainTruckViewModel> 

我的 xaml 看起来像这样,我希望在设计视图中看到 ASTInsurance 数据,但它没有显示

<ItemsControl 
                    Grid.Row="1"
                    ItemsSource="{Binding CurrentItem.ASTInsurances}">

我不知道如何根据设计数据制作各种“工作”列表。任何指针?我发现某处可以使用单独的 d:DesignData 作为列表并尝试创建这样的 XAML:

<Generic:List 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:Generic="clr-namespace:System.Collections.Generic;assembly=mscorlib"
    x:TypeArguments="data:ASTInsurance" 
    xmlns:data="clr-namespace:IDATT.Model;assembly=IDATT.Model.SL">
                <data:ASTInsurance
                    InsuranceKey="1"
                    CompanyName="Great West"
                    AgentCompanyName="Joes insurance"
                    CoverageAmount = "1000000"
                    DeductibleAmount = "1000"
                    InsuranceType = "General liability"
                    IsActive = "True"
                    PolicyNumber = "123ABC"
                    ExpireOn = "01-01-2012"
                    Note = "This insurance covers all stuff"/>

</Generic:List> 

现在 XAML 编辑器强调 Generic.List 并说The type 'Generic:List' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built

4

1 回答 1

3

尝试System.Collections.Generic.List<T>在 XAML 中使用的问题是(据我所知)XAML 的 Silverlight 方言无法指定泛型类型参数的值。您得到的错误是因为没有类型System.Collections.Generic.List没有类型参数。

您可以做的一件事是创建一个List<T>为类型参数提供值但不包含新成员或覆盖成员的子类,例如:

public class ASTInsuranceList : List<ASTInsurance>
{
}

然后,您可以使用ASTInsuranceListXAML 中的对象来包含ASTInsurance对象列表。

于 2013-01-03T22:18:50.160 回答