How to add auto-append UI in WinUI ComboBox control?
This article explains how to add auto append support in the WinUI ComboBox control.
The Combobox control provides auto-append support with the selection of text as well as text alone. The auto-append UI can be defined by using the AutoAppendType property. There are two types of auto-append UI:
- TextWithSelection
- Text
Auto-append UI as TextWithSelection
When entering a text in the text box selection area, if the AutoAppendType property is TextWithSelection, the appended text appears with the selection.
XAML
<editors:SfComboBox AutoAppendType="TextWithSelection">
</editors:SfComboBox>
Auto-append UI as Text
When entering a text in the text box selection area, if the AutoAppendType property is Text, the appended text appears in a fading foreground.
XAML
<editors:SfComboBox AutoAppendType="Text">
</editors:SfComboBox>
Conclusion
I hope you enjoyed learning about how to add Auto-Append UI in WinUI ComboBox control.
You can refer to our WinUI ComboBox feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications.
For current customers, you can check out our components from the Licence and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forum, Support portal, or feedback portal. We are always happy to assist you!