Back to Devexpress

How to: Change the control's view in XAML

wpf-6904-controls-and-libraries-navigation-controls-navigation-bar-examples-how-to-change-the-controls-view-in-xaml.md

latest476 B
Original Source

How to: Change the control's view in XAML

  • Aug 01, 2019

You can change the control’s view in XAML by declaring the required view type tag within the <dxn:NavBarControl.View> tag.

xaml
<!--...-->
    <dxn:NavBarControl Name="navBarControl1">
        <dxn:NavBarControl.View>
            <dxn:NavigationPaneView ActiveGroupMinHeight="200"/>
        </dxn:NavBarControl.View>

        <!-...-->
    </dxn:NavBarControl>