Files
CSI-Z420-Tablet-Multi-Funct…/Views/MainWindow.xaml.cs

21 lines
323 B
C#
Raw Normal View History

2026-05-05 15:31:24 +08:00
using System.Windows;
2026-05-15 15:48:43 +08:00
using System.Windows.Controls;
using System.Windows.Input;
2026-05-05 15:31:24 +08:00
namespace TabletTester2025
{
public partial class MainWindow : Window
{
2026-05-15 14:35:12 +08:00
// 硬度测试的ViewModel实例
2026-05-05 15:31:24 +08:00
public MainWindow()
{
2026-05-15 14:35:12 +08:00
2026-05-05 15:31:24 +08:00
InitializeComponent();
2026-05-15 14:35:12 +08:00
2026-05-05 15:31:24 +08:00
}
2026-05-15 15:48:43 +08:00
2026-05-16 10:55:07 +08:00
2026-05-15 15:48:43 +08:00
2026-05-05 15:31:24 +08:00
}
}