14 lines
258 B
C#
14 lines
258 B
C#
|
|
using System.Windows;
|
||
|
|
|
||
|
|
namespace BetterSeewoInstaller;
|
||
|
|
|
||
|
|
public partial class App : Application
|
||
|
|
{
|
||
|
|
protected override void OnStartup(StartupEventArgs e)
|
||
|
|
{
|
||
|
|
base.OnStartup(e);
|
||
|
|
var window = new MainWindow();
|
||
|
|
window.Show();
|
||
|
|
}
|
||
|
|
}
|