日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

转载:ListBox的SelectedValue和SelectedItem的区别

發布時間:2024/7/19 编程问答 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 转载:ListBox的SelectedValue和SelectedItem的区别 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
轉載:ListBox的SelectedValue和SelectedItem的區別 原文:http://www.beacosta.com/blog/?p=9

What is the difference between SelectedValue and SelectedItem?

When they are used by themselves, these two properties are very similar. The need for both and the difference between the two becomes apparent when SelectedValuePath is also set.

For example, consider our well-known GreekGods data source. I set the DataContext of the StackPanel to be that collection through code:

????GreekGods items;
????items = new GreekGods();
????mainStackPanel.DataContext = items;

And used an empty Binding to bind that collection to the ListBox. I know that I want to select the GreekGod with description “Messenger of the Gods” (even though I am only displaying the Name of each God). This is when SelectedValuePath becomes useful. Each item in the ListBox is a GreekGod object, so by setting SelectedValuePath to “Description” I am able to drill down into the Description property of each GreekGod. Then I just have to set SelectedValue to the description I am looking for and the item becomes selected.

????<StackPanel Name=”mainStackPanel”>
????????<ListBox ItemsSource=”{Binding}” DisplayMemberPath=”Name” SelectedValue=”Messenger of the Gods” SelectedValuePath=”Description” Name=”listBox1″ (…) />
????</StackPanel>

// 注意這里可以用一個空的綁定,選擇了GreekGod的Name作為DisplayMember,選擇Description作為SelectedValue的選擇字段,并且這里選擇了Description的內容是"Messenger of the Gods"的那個Item。

The difference between SelectedValue and SelectedItem should be obvious now. SelectedValue returns the string it was set to (”Messenger of the Gods”), while SelectedItem returns the actual GreekGod object with that description.

????string messengerOfGods = (string)(listBox1.SelectedValue);
????GreekGod hermes = (GreekGod)(listBox1.SelectedItem);

SelectedValue is particularly useful when only part of your item is stored in the model you are data binding to. In this scenario, you would data bind the SelectedValue property to the partial information in your model but the ListBox can show a lot more information about that item.

If you have ideas of how to combine these two properties in one, we would love to hear it.

Here you can find the VS project with this sample code. Put a breakpoint in the handler for the button click to inspect the values of SelectedValue and SelectedItem when the button is clicked. This works with September CTP WPF bits.

posted on 2008-10-20 15:52 cutebear 閱讀(...) 評論(...) 編輯 收藏

轉載于:https://www.cnblogs.com/bear831204/archive/2008/10/20/1313538.html

總結

以上是生活随笔為你收集整理的转载:ListBox的SelectedValue和SelectedItem的区别的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。