2023-12-23 14:44:10 +00:00
|
|
|
|
using HKW.HKWUtils;
|
|
|
|
|
using System;
|
2023-12-20 12:51:58 +00:00
|
|
|
|
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;
|
2023-12-23 14:44:10 +00:00
|
|
|
|
using VPet.Solution.ViewModels;
|
2023-12-20 12:51:58 +00:00
|
|
|
|
|
|
|
|
|
namespace VPet.Solution.Views;
|
2023-12-23 14:44:10 +00:00
|
|
|
|
|
2023-12-20 12:51:58 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// GraphicsSettingsPage.xaml 的交互逻辑
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class GraphicsSettingsPage : Page
|
|
|
|
|
{
|
2023-12-23 14:44:10 +00:00
|
|
|
|
public GraphicsSettingsPageVM ViewModel => this.SetViewModel<GraphicsSettingsPageVM>().Value;
|
|
|
|
|
|
2023-12-20 12:51:58 +00:00
|
|
|
|
public GraphicsSettingsPage()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
}
|