Dictionary<string, string>  dic= new Dictionary<string, string>();
dic.Add("name","john");
Lbox3.ItemsSource=dic
Lbox3.DisplayMemberPath = "Value"; private void Lbox1_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
string str= Lbox3.SelectedItem.ToString()//这样是不可以的,怎么读取?
}