Possible values for ComboBoxPopupAnimationKey?

0

I recently had a bug with combobox on WPF . It was bug related to a "haze" at the source when it had only one item in the combobox while it opened. I solved the problem by removing the animation from it with the solution below.

I'd like to know what other possible values I can set in addition to None . Search on MSDN but found nothing.

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

  <PopupAnimation x:Key="{x:Static SystemParameters.ComboBoxPopupAnimationKey}">
       None
  </PopupAnimation>

</ResourceDictionary>  
    
asked by anonymous 31.10.2016 / 19:28

1 answer

1

The PopupAnimation element uses the enumeration of the same name, described here . Possible values are None , Scroll , Fade and Slide .

    
03.11.2016 / 13:36