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>