Files
Better-Seewo/Manager/App.xaml.cs

14 lines
264 B
C#
Raw Normal View History

using System.Windows;
namespace BetterSeewoManager;
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
var mainWindow = new MainWindow();
mainWindow.Show();
}
}