15 lines
273 B
C#
15 lines
273 B
C#
using WPFluent.Gallery.ViewModels.Pages.Navigation;
|
|
|
|
namespace WPFluent.Gallery.Views.Pages.Navigation;
|
|
|
|
public partial class NavigationPage
|
|
{
|
|
public NavigationPage()
|
|
{
|
|
DataContext = new BreadcrumbBarViewModel();
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
}
|