Files
Ramitta-lib/template/App.xaml.cs
XerolySkinner 624125ec7b Ramitta
我是米塔更新
2025-08-29 14:57:55 +08:00

21 lines
420 B
C#

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();
}
}
}