Is there anyway to stop the combo editor drop down from "sliding down". I want it to just pop up without a delay.
Thanks,
Glen Winn
That worked. Thank you.
Hi Glen,
You can include a resource by the key of SystemParameters.ComboBoxPopupAnimationKey and the value of PopupAnimation.None in the resources of the XamComboEditor style or in the resources of the window or app.
window.Resources[SystemParameters.ComboBoxPopupAnimationKey] = PopupAnimation.None;
Hope this helps,
Sandip