Files
ShrlAlgoToolkit/WPFluent.Gallery/Views/Pages/SettingsPage.xaml.cs
2025-05-05 17:04:06 +08:00

18 lines
356 B
C#

using WPFluent.Gallery.ViewModels;
using WPFluent.Gallery.ViewModels.Pages;
namespace WPFluent.Gallery.Views.Pages;
public partial class SettingsPage
{
public SettingsViewModel ViewModel { get; }
public SettingsPage()
{
ViewModel = new SettingsViewModel();
DataContext = ViewModel;
InitializeComponent();
}
}