VPet.ModMaker/VPet.Plugin.ModMaker/Views/ModMakerWindow.xaml.cs
2023-08-20 05:52:13 +08:00

36 lines
967 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
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.Shapes;
using VPet.Plugin.ModMaker.Models;
using VPet.Plugin.ModMaker.ViewModels;
using VPet.Plugin.ModMaker.Views.ModEdit;
namespace VPet.Plugin.ModMaker.Views;
/// <summary>
/// winModMaker.xaml 的交互逻辑
/// </summary>
public partial class ModMakerWindow : Window
{
public WindowVM_ModMaker ViewModel => (WindowVM_ModMaker)this.DataContext;
public Models.ModMaker ModMaker { get; set; }
public ModEditWindow ModEditWindow { get; set; }
public ModMakerWindow()
{
InitializeComponent();
DataContext = new WindowVM_ModMaker(this);
}
}