This question is locked. New answers and comments are not allowed.
First of all: I use the Metro theme and I've read this post.
What I'm actually trying to do is to completely disable any animations of the popup menu of all my top level menu items. But lets start from the beginning...
Looking at your Metro sources I found this:
However, I can't see any slide animation in my application. Still, the popup doesn't appear instantly, so it seems to me that there must be an animation. But neither setting "telerikAnimation:AnimationManager.IsAnimationEnabled="False"" nor "AnimationManager.IsGlobalAnimationEnabled = false;" changed anything. So I tried to explicitly set an this animation selector for testing purposes
as the content of my RadMenu and/or my top level RadMenuItem. Still no effect. No animations visible.
So, are animations broken for RadMenu in general?
Is there anything I missed?
And, most important: How can I completely disable any animations of the popup menu of all my top level menu items?
Thanks.
What I'm actually trying to do is to completely disable any animations of the popup menu of all my top level menu items. But lets start from the beginning...
Looking at your Metro sources I found this:
<
Style
TargetType
=
"telerikNavigation:RadMenu"
>
...
<
Setter
Property
=
"animation:AnimationManager.AnimationSelector"
>
<
Setter.Value
>
<
animation:AnimationSelector
>
<
animation:SlideAnimation
Direction
=
"In"
SlideMode
=
"Top"
AnimationName
=
"Expand"
TargetElementName
=
"PopupContentElement"
/>
</
animation:AnimationSelector
>
</
Setter.Value
>
</
Setter
>
However, I can't see any slide animation in my application. Still, the popup doesn't appear instantly, so it seems to me that there must be an animation. But neither setting "telerikAnimation:AnimationManager.IsAnimationEnabled="False"" nor "AnimationManager.IsGlobalAnimationEnabled = false;" changed anything. So I tried to explicitly set an this animation selector for testing purposes
<
telerikAnimation:AnimationManager.AnimationSelector
>
<
telerikAnimation:AnimationSelector
>
<
telerikAnimation:SlideAnimation
Direction
=
"In"
SlideMode
=
"Bottom"
AnimationName
=
"Expand"
TargetElementName
=
"PopupContentElement"
SpeedRatio
=
"3.0"
/>
<
telerikAnimation:SlideAnimation
Direction
=
"Out"
SlideMode
=
"Bottom"
AnimationName
=
"Collapse"
TargetElementName
=
"PopupContentElement"
SpeedRatio
=
"3.0"
/>
</
telerikAnimation:AnimationSelector
>
</
telerikAnimation:AnimationManager.AnimationSelector
>
as the content of my RadMenu and/or my top level RadMenuItem. Still no effect. No animations visible.
So, are animations broken for RadMenu in general?
Is there anything I missed?
And, most important: How can I completely disable any animations of the popup menu of all my top level menu items?
Thanks.