1

私の悪い英語でごめんなさい。リストビューのアイテムソースに画像のリストをバインドしようとしました:

ItemsSource="{x:Bind ViewModel.Images,Mode=TwoWay}"

In ViewModel I have a list of Images :

     public List<Image> Images
    {
        get { return _images; }
        set
        {
            _images = value;
            base.RaisePropertyChanged();
        }
    }

バインド モードを TwoWay に設定すると、次のエラーが発生します。

Invalid binding path 'View Model.Reports': You can not associate the type 'System.Collections.Generic.List (posytron.epart.uwp.Models.DOM.Report)' to 'System.Object' without a converter

バインド モードを OneWay に設定すると、機能します。

ブール値を可視性属性に変換するコンバーターを既に開発しました。

コンバーターには何を含める必要がありますか? 誰かが私を助けることができますか?なぜこのエラーが発生するのですか?

ありがとうございました!!

4

1 に答える 1