我正在尝试在我的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 for list并尝试创建这样的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