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