Completed
Last Updated: 01 Jun 2020 13:23 by ADMIN
Release LIB 2020.2.608 (06/08/2020)
Martin Ivanov
Created on: 13 Nov 2019 16:04
Category: NavigationView
Type: Bug Report
2
NavigationView: The items area is not expanded when IsPaneOpen set to True initially

If you set the RadNavigationView's IsPaneOpen property in XAML and start the application, the items are is not opened (the pane is collapsed). You can notice that IsPaneOpen property is set back to false, when the control gets loaded.

To work this around, subscribe to the Loaded event of the RadNavigationView instance and in the event handler, set the IsPaneOpen property.

private void RadNavigationView_Loaded(object sender, RoutedEventArgs e)
{
	this.radNavigationView.IsPaneOpen = true;
}

0 comments