Dictionary と ListBox のデータバインド

#wp7dev_jp
Dictionary はkeyとValueの簡単なデータソース。リストとバインドするとお手軽に利用できます。

public partial class MainPage : PhoneApplicationPage
{

    Dictionary<string, string> dStudent = new Dictionary<string, string>();
    ListBox myListbox = new ListBox();

    // コンストラクター
    public MainPage()
{
InitializeComponent();

        dStudent.Add("先鋒", "高橋");
        dStudent.Add("次鋒", "大西");
        dStudent.Add("中堅", "太田");
        dStudent.Add("副将", "川西");
        dStudent.Add("少将", "田中");
        dStudent.Add("大将", "安納");
        dStudent.Add("総大将", "杉田");
        dStudent.Add("提督", "長坂");

        ContentPanel.Children.Add(myListbox);
        myListbox.ItemsSource = dStudent.Keys;
        //myListbox.ItemsSource = dStudent.Values;
   }
}