Files

21 lines
420 B
C#
Raw Permalink Normal View History

2025-08-29 14:57:55 +08:00
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();
}
}
}