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

32 lines
834 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-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>
/// InteractiveSettingsPage.xaml 的交互逻辑
/// </summary>
2023-12-30 14:54:49 +00:00
public partial class InteractiveSettingPage : Page
2023-12-20 12:51:58 +00:00
{
2024-01-11 16:28:22 +00:00
public InteractiveSettingPageVM ViewModel => (InteractiveSettingPageVM)DataContext;
2023-12-30 14:54:49 +00:00
public InteractiveSettingPage()
2023-12-20 12:51:58 +00:00
{
InitializeComponent();
2024-01-11 16:28:22 +00:00
this.SetViewModel<InteractiveSettingPageVM>();
2023-12-20 12:51:58 +00:00
}
}