21 lines
323 B
C#
21 lines
323 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Input;
|
|
|
|
namespace TabletTester2025
|
|
{
|
|
public partial class MainWindow : Window
|
|
{
|
|
// 硬度测试的ViewModel实例
|
|
public MainWindow()
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
} |