2024-03-30 07:00:02 +00:00
|
|
|
|
using System.Windows.Controls;
|
2024-01-11 16:28:22 +00:00
|
|
|
|
using VPet.Solution.ViewModels.SettingEditor;
|
2023-12-20 12:51:58 +00:00
|
|
|
|
|
2024-01-07 14:57:27 +00:00
|
|
|
|
namespace VPet.Solution.Views.SettingEditor;
|
2023-12-30 14:54:49 +00:00
|
|
|
|
|
2023-12-20 12:51:58 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// SystemSettingsPage.xaml 的交互逻辑
|
|
|
|
|
/// </summary>
|
2023-12-30 14:54:49 +00:00
|
|
|
|
public partial class SystemSettingPage : Page
|
2023-12-20 12:51:58 +00:00
|
|
|
|
{
|
2024-01-11 16:28:22 +00:00
|
|
|
|
public SystemSettingPageVM ViewModel => (SystemSettingPageVM)DataContext;
|
|
|
|
|
|
2023-12-30 14:54:49 +00:00
|
|
|
|
public SystemSettingPage()
|
2023-12-20 12:51:58 +00:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2024-01-11 16:28:22 +00:00
|
|
|
|
this.SetViewModel<SystemSettingPageVM>();
|
2023-12-20 12:51:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|