VPet/VPet.Solution/Views/SettingEditor/SystemSettingPage.xaml.cs

28 lines
629 B
C#
Raw Normal View History

2023-12-20 12:51:58 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
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
{
2023-12-30 14:54:49 +00:00
public SystemSettingPage()
2023-12-20 12:51:58 +00:00
{
InitializeComponent();
}
}