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