WPF endgültiv vorbereitet

This commit is contained in:
HuskyTeufel
2021-05-05 13:49:59 +02:00
parent 3d3de440ec
commit f66815fda5
7 changed files with 12 additions and 6 deletions

View File

@@ -13,5 +13,11 @@ namespace GuiWPF
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
var window = new MainWindow() { DataContext = new MainWindowViewModel() };
window.Show();
}
}
}