vote up 0 vote down star

When I put a combobox in my WPF app, at runtime, when I click it, it rolls down the included items. After selection, it rolls the DropDown up again.

Is it possible to prevent the rolling animation from happening? Instead I'ld like to just have it open and closed immediately.

- Marc

flag

33% accept rate
What OS are you running? I'm running XP and this does not occur using WPF's ComboBox control. – siz Nov 7 at 2:31
It happens for me on Vista and Win7. I'm not sure about XP. But I already realized that a few things are different between WPF on XP and WPF on Vista. For example the font smoothing looks differently. – marc40000 Nov 11 at 14:41

1 Answer

vote up 0 vote down

I don't think it's possible to simply disable the animation on the ComboBox as it stands. However, I believe the default ControlTemplate for the ComboBox implements the dropdown portion as a Popup. I'm guessing that it's using the Slide PopupAnimation setting. If you're up for it, you can replace the ControlTemplate for the ComboBox and set the PopupAnimation on that Popup to None or whatever setting you'd like.

Here's an example ComboBox ControlTemplate thanks to Microsoft.

Let me know if you need further assistance.

-- HTH, Dusty

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.