Files
ShrlAlgoToolkit/WPFluent.Gallery/Views/Pages/NavigationPage.xaml.cs

15 lines
273 B
C#
Raw Normal View History

2025-07-11 09:20:23 +08:00
using WPFluent.Gallery.ViewModels.Pages.Navigation;
2025-04-24 20:56:44 +08:00
namespace WPFluent.Gallery.Views.Pages.Navigation;
2025-05-05 17:04:06 +08:00
public partial class NavigationPage
2025-04-24 20:56:44 +08:00
{
2025-05-05 17:04:06 +08:00
public NavigationPage()
2025-04-24 20:56:44 +08:00
{
2025-07-11 09:20:23 +08:00
DataContext = new BreadcrumbBarViewModel();
2025-04-24 20:56:44 +08:00
InitializeComponent();
}
}