diff --git a/Client/Views/GameWindow.xaml b/Client/Views/GameWindow.xaml index 6614197..7e8c71c 100644 --- a/Client/Views/GameWindow.xaml +++ b/Client/Views/GameWindow.xaml @@ -6,6 +6,7 @@ xmlns:local="clr-namespace:Client.Views" xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit" mc:Ignorable="d" + Closing="Window_Closing" Title="Scrubl.io" Height="600" Width="1200"> diff --git a/Client/Views/GameWindow.xaml.cs b/Client/Views/GameWindow.xaml.cs index 9d90635..55e8be0 100644 --- a/Client/Views/GameWindow.xaml.cs +++ b/Client/Views/GameWindow.xaml.cs @@ -58,5 +58,10 @@ namespace Client.Views { viewModel.Color_Picker(e, this); } + + private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e) + { + + } } }