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

XAMLで使用しようとする際の問題System.Collections.Generic.List<T>は、(私が知る限り)XAMLのSilverlight方言には、ジェネリック型パラメーターの値を指定する方法が含まれていないことです。発生するエラーはSystem.Collections.Generic.List、型パラメーターを持たない型がないためです。

実行できることの1つはList<T>、typeパラメーターの値を提供するが、新しいメンバーやオーバーライドされたメンバーを含まないサブクラスを作成することです。次に例を示します。

public class ASTInsuranceList : List<ASTInsurance>
{
}

ASTInsuranceList次に、XAMLのオブジェクトを使用して、オブジェクトのリストを含めることができASTInsuranceます。

于 2013-01-03T22:18:50.160 に答える