在WP7中为选定的ListPicker值设置文本

时间:2012-04-13 08:08:35

标签: c# .net windows-phone-7 listpicker

您好我正在创建一个WP7app,您可以使用listpicker选择类别。

 <toolkit:ListPicker Header="Choose Categories" 
                                    SelectionMode="Multiple" 
                                    FullModeHeader="CATEFORIES"
                                    x:Name="ListPickerCategories"
                                    CacheMode="BitmapCache"                                
                                    HorizontalAlignment="Left"
                                    Margin="24,482,0,0"
                                    VerticalAlignment="Top"
                                    Width="401"                                
                                    Grid.ColumnSpan="2"
                                    ItemsSource="{Binding Categories}">                
                </toolkit:ListPicker>

enter image description here

选择类别时,我希望能够在框中指定上面显示的值。现在,默认设置是始终显示第一个选择的值。

你如何指定这个?

1 个答案:

答案 0 :(得分:2)

ListPickerMode属性更改为Expanded,然后将ItemCountThreshold设置为您需要显示的项目数。

您可以找到更多信息here