mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
19 lines
453 B
C#
19 lines
453 B
C#
using System.Windows.Controls;
|
|
using VPet.Solution.ViewModels.SettingEditor;
|
|
|
|
namespace VPet.Solution.Views.SettingEditor;
|
|
|
|
/// <summary>
|
|
/// SystemSettingsPage.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class SystemSettingPage : Page
|
|
{
|
|
public SystemSettingPageVM ViewModel => (SystemSettingPageVM)DataContext;
|
|
|
|
public SystemSettingPage()
|
|
{
|
|
InitializeComponent();
|
|
this.SetViewModel<SystemSettingPageVM>();
|
|
}
|
|
}
|