2

嗨,我正在创建一个 WP7app,您可以在其中使用列表选择器选择类别。

 <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>

在此处输入图像描述

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

你如何指定这个?

4

1 回答 1

2

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

您可以在这里找到更多信息

于 2012-04-13T09:48:20.693 回答