Intersoft ClientUI 8 > ClientUI Controls > Control Library > Input Controls Overview > UXComboBox > How-to: Customize Dropdown Effect in UXComboBox |
This example shows how to customize dropdown effect in UXComboBox.
UXComboBox also has properties similar to UXPopup which controls the dropdown menu animation. These properties allow you to control each visual effects individually. However, it is advised that you avoid mixing the animation for DisplayAnimation or HideAnimation. If you want to disable certain animation, you can set the DisplayAnimation or HideAnimation property to None.
Some of these properties are shown in the code below. To learn more about UXComboBox dropdown menu animation, see UXComboBox Overview.
XAML |
Copy Code
|
---|---|
<Intersoft:UXComboBox Width="150" DisplayAnimation="Zoom" HideAnimation="Zoom" EnableFadeOutAnimation="True" EnableFadeInAnimation="True" > <Intersoft:UXComboBoxItem Content="Andrew"/> <Intersoft:UXComboBoxItem Content="Angela"/> <Intersoft:UXComboBoxItem Content="Angeline"/> <Intersoft:UXComboBoxItem Content="David"/> <Intersoft:UXComboBoxItem Content="Hill"/> <Intersoft:UXComboBoxItem Content="Karen"/> <Intersoft:UXComboBoxItem Content="Kory"/> <Intersoft:UXComboBoxItem Content="Michelle"/> </Intersoft:UXComboBox> |