我是米塔更新
This commit is contained in:
2025-08-29 14:57:55 +08:00
parent f8e7832ac2
commit 624125ec7b
365 changed files with 7545 additions and 0 deletions

20
template/App.xaml.cs Normal file
View File

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