Intersoft ClientUI 8 > ClientUI Controls > Control Library > Input Controls Overview > UXComboBox > How-to: Enable Text Search in UXComboBox |
This example shows how to enable text search in UXComboBox.
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.
XAML |
Copy Code
|
---|---|
<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> |