添加项目文件。

This commit is contained in:
xyy
2026-05-05 15:31:24 +08:00
parent 196fcc7822
commit 11bf3f4827
27 changed files with 1526 additions and 0 deletions

17
Views/MainWindow.xaml.cs Normal file
View File

@@ -0,0 +1,17 @@
using System.Windows;
namespace TabletTester2025
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
// 为标题栏的按钮添加 Click 事件
SettingsButton.Click += (s, e) => new SettingsWindow().ShowDialog();
HistoryButton.Click += (s, e) => new HistoryWindow().ShowDialog();
CalibrationButton.Click += (s, e) => MessageBox.Show("校准功能待实现", "提示");
}
}
}