[ADDED] lobby to the shared project and almost done with start GUI

This commit is contained in:
lars
2020-10-13 11:49:31 +02:00
parent 66efaf736d
commit d84899a712
9 changed files with 313 additions and 1 deletions

View File

@@ -13,5 +13,17 @@ namespace Client
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
MainWindow startWindow = new MainWindow();
ViewModel VM = new ViewModel();
startWindow.DataContext = VM;
startWindow.Show();
}
}
}