Files
Shrlalgo.RvKits/WPFluent.Gallery/Views/Pages/SettingsPage.xaml.cs
ShrlAlgo 4d35cadb56 更新
2025-07-11 09:20:23 +08:00

15 lines
276 B
C#

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