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

18 lines
356 B
C#
Raw Normal View History

2025-05-05 17:04:06 +08:00
using WPFluent.Gallery.ViewModels;
2025-04-24 20:56:44 +08:00
using WPFluent.Gallery.ViewModels.Pages;
namespace WPFluent.Gallery.Views.Pages;
2025-05-05 17:04:06 +08:00
public partial class SettingsPage
2025-04-24 20:56:44 +08:00
{
public SettingsViewModel ViewModel { get; }
2025-05-05 17:04:06 +08:00
public SettingsPage()
2025-04-24 20:56:44 +08:00
{
2025-05-05 17:04:06 +08:00
ViewModel = new SettingsViewModel();
DataContext = ViewModel;
2025-04-24 20:56:44 +08:00
InitializeComponent();
}
}