AHAQ_QGNH/AnQing/View/SetUpView.xaml.cs
2025-05-19 09:31:47 +08:00

38 lines
944 B
C#

using AnQing.Commons;
using AnQing.ViewModel;
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;
namespace AnQing.View
{
/// <summary>
/// SetUpView.xaml 的交互逻辑
/// </summary>
public partial class SetUpView : UserControl
{
public SetUpViewModel SetUpViewModel;
public SetUpView()
{
InitializeComponent();
SetUpViewModel = new SetUpViewModel();
this.DataContext = SetUpViewModel;
}
private void Button_Click(object sender, RoutedEventArgs e)
{
Common.MenuViewQuit();
}
}
}