2

我想让我的ComboBox可编辑。我Combobox显示国家列表,我希望我的用户能够输入国家来搜索它。但是,在当前状态下,它并没有这样做。我做错了什么?

<ComboBox x:Name="CmbCountryList" Width="150" 
    IsEditable="True" IsTextSearchEnabled="True" 
    IsTextSearchCaseSensitive="False" StaysOpenOnEdit="True"
    TextSearch.TextPath="CountryName"  
    ItemsSource="{Binding CountryMasterList,  Mode=TwoWay}"  
    DisplayMemberPath="CountryName" 
    SelectedValuePath="CountryID" 
    SelectedItem="{Binding Path=CountryObj, Mode=TwoWay, ValidatesOnDataErrors=True}" 
    Text="{Binding Path=CountryName,  Mode=TwoWay}" 
    IsSynchronizedWithCurrentItem="False" />
4

1 回答 1

0

查看http://weblogs.asp.net/okloeten/archive/2007/11/12/5088649.aspx以获取如何实现此功能的示例。

于 2013-06-14T13:45:35.830 回答