Hello,
You can change the NavBar animation without a problem. Use the View NavBarAnimationOptions.ExpandStoryboard and NavBarAnimationOptions.CollapseStoryboard attached properties:
<Window.Resources>
<Storyboard x:Key="collapseStoryboard">
<DoubleAnimation Storyboard.TargetName="PART_DXExpander" Storyboard.TargetProperty="AnimationProgress" To="0" Duration="0:0:0.2"/>
</Storyboard>
<Storyboard x:Key="expandStoryboard">
<DoubleAnimation Storyboard.TargetName="PART_DXExpander" Storyboard.TargetProperty="AnimationProgress" To="1" Duration="0:0:0.5"/>
</Storyboard>
</Window.Resources>
...
<dxn:ExplorerBarView dxn:NavBarAnimationOptions.ExpandStoryboard="{DynamicResource expandStoryboard}" dxn:NavBarAnimationOptions.CollapseStoryboard="{DynamicResource collapseStoryboard}"/>
...
Thank you, Marina
Is your intention to post an answer to your own question?
- If so, then proceed.
- If you simply wanted to post additional information, ask for further clarification, or to just say "Thanks!", please click Leave a Comment.
- If you wish to edit your original question, please use the Edit button in the Toolbox at the top right corner of that entry.
Facebook
Twitter
Google+