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