0

この場合、ListPicker でリストの値を確認できるとは想定されていませんか?

xaml

<toolkit:ListPicker
                x:Name="lpkBoards"
                ItemsSource="{Binding AllBoards}"
                DisplayMemberPath="Name" >
                </toolkit:ListPicker>

xaml.cs

public SettingsPage()
        {
            InitializeComponent();

            // Set the page DataContext property to the ViewModel.
            this.DataContext = App.ViewModel;

         ...

            boardsTask.ContinueWith(
                (call) =>
                {
                    App.ViewModel.AllBoards = call.Result.ToList();

                }
                );

ビューモデル

// All to-do items.
private List<Board> _allBoards;
public List<Board> AllBoards
{
    get { return _allBoards; }
    set
    {
        _allBoards = value;
        NotifyPropertyChanged("AllBoards");
    }
}
4

1 に答える 1

1

UI要素にバインドしようとしていて、それを機能させたい場合は、List<Board>をに変更する必要があります。ObservalbeCollection<Board>

于 2013-02-22T02:41:57.080 に答える