This example shows how to enable text search in UXComboBox.
Example
Description
UXComboBox supports text search capability similar to UXListBox. To enable the text search, set the IsTextSearchEnable to True.
UXComboBox also support case sensitivity text search. To enable it, set the IsTextSearchCaseSensitity property to True.
Code
XAML | ![]() |
---|---|
<Intersoft:UXComboBox Width="150" IsTextSearchEnabled="True" IsTextSearchCaseSensitive="True"> <Intersoft:UXComboItem Content="Andrew"/> <Intersoft:UXComboItem Content="Angela"/> <Intersoft:UXComboItem Content="Angeline"/> <Intersoft:UXComboItem Content="David"/> <Intersoft:UXComboItem Content="Hill"/> <Intersoft:UXComboItem Content="Karen"/> <Intersoft:UXComboItem Content="Kory"/> <Intersoft:UXComboItem Content="Michelle"/> </Intersoft:UXComboBox> |