Current filter:
                                You should refresh the page.
                                0
                                  • Is it possible to control the speed of a NavBarGroup when it expands and collapses? While the default behavior is smooth, it is a bit slow for our application. Thanks.

                                    Greg

                                0

                                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

                                0

                                Thanks!

                                0

                                Welcome!

                                You must  log in  or  register  to leave an answer

                                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.