1

Silverlightのリストピッカーコントロールを使用し、Beanクラスを使用してそれに値を追加しましたが、SelectionChangedイベントでアイテムの名前を取得できません。どうすればよいですか?

4

1 に答える 1

1

In the XAML:

<toolkit:ListPicker SelectionChanged="OnListPickerChanged" />

And in the code-behind:

private void OnListPickerChanged(object sender, SelectionChangedEventArgs e)
{
    var selectedItem = (sender as ListPicker).SelectedItem;
    // Do what you want with selectedItem
}
于 2013-02-04T13:26:25.067 に答える