2
<ComboBox x:Name="c1" Margin="21,134,228,-184" BorderBrush="{x:Null}" BorderThickness="6" Background="{x:Null}" Foreground="#FFFF0017" />

List<String> source = new List<String>();

c1.ItemsSource = source;

c1.SelectedIndex = 0;

我可以看到这些项目,但我无法选择它们?我不能滚动???就像当我添加超过组合框的大小时,

它应该出现一个卷轴?我来自windows store c#,这就是它在那里的方式。

我想让它像一个普通的组合框一样工作,你点击它,它会出现一个你可以选择的可滚动的项目列表......谢谢!

4

1 回答 1

4

不建议使用组合框控件。使用 ListPicker 控件。

脚步 :

  1. 从此链接下载 nuget 包:https ://www.nuget.org/packages/WPtoolkit/

  2. 添加对 xaml 文件顶部的引用:

    xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
    
  3. 使用 ListPicker 如下所示:

    <toolkit:ListPicker  Height="50" ScrollViewer.VerticalScrollBarVisibility="Auto" ItemsSource="{Binding ElementName=ConverterPage, Path=Locations}" Margin="179,129,70,434" Name="cmbCurrFrom">
            <toolkit:ListPicker.ItemTemplate>
                <DataTemplate>
                    <TextBlock FontSize="30" Foreground="Black" Text="{Binding Path=Location}"></TextBlock>
                </DataTemplate>
            </toolkit:ListPicker.ItemTemplate>
            <toolkit:ListPicker.FullModeItemTemplate>
                <DataTemplate>
                    <TextBlock FontSize="30" Foreground="Black" Text="{Binding Path=Location}"></TextBlock>
                </DataTemplate>
            </toolkit:ListPicker.FullModeItemTemplate>
        </toolkit:ListPicker>
    
于 2014-03-02T08:46:46.363 回答