初始化提交

This commit is contained in:
2025-09-19 17:42:11 +08:00
commit fde5919d99
84 changed files with 55570 additions and 0 deletions

28
电子展板/App.xaml.cs Normal file
View File

@@ -0,0 +1,28 @@
using HandyControl.Collections;
using System.Configuration;
using System.Data;
using System.Diagnostics;
using System.Windows;
namespace
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
public App()
{
}
protected override void OnStartup(StartupEventArgs e)
{
MainWindow mainWindow = new MainWindow();
mainWindow.Show();
MainWindow2 mainWindow2 = new MainWindow2();
mainWindow2.Show();
base.OnStartup(e);
}
}
}