1
<ComboBox Name="cbDesignation" IsEditable="True" TextSearch.TextPath="DesignationName" 
    StaysOpenOnEdit="True" ItemsSource="{Binding Path=DesignationCollection,Mode=TwoWay}" 
    SelectedItem="{Binding Path=SelectedDesignation,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged,ValidatesOnDataErrors=True}" 
    VerticalAlignment="Center">
    <ComboBox.ItemsPanel>
        <ItemsPanelTemplate>
            <VirtualizingStackPanel/>
        </ItemsPanelTemplate>
    </ComboBox.ItemsPanel>
    <ComboBox.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding Path=DesignationName}" VerticalAlignment="Center" Grid.Column="1" Margin="5,0,0,0"/>
        </DataTemplate>
    </ComboBox.ItemTemplate>
</ComboBox>

如果它是可编辑的,那么它会搜索但我只希望用户输入字母开头的一个项目,那么它将显示这个字母表中的所有列表

4

1 回答 1

0

代替自动完成文本框怎么样?它还使用建议并为您进行所有过滤。你可以在这里找到一个:
http
://wpfactb.codeplex.com/ (更多信息在这里:http: //blogs.windowsclient.net/dragonz/archive/2010/02/23/autocomplete-textbox-control-for-wpf .aspx )

于 2012-05-10T06:10:32.073 回答