diff --git a/KanSan/App.xaml b/KanSan/App.xaml index f99e7b6..66677b9 100644 --- a/KanSan/App.xaml +++ b/KanSan/App.xaml @@ -1,6 +1,7 @@  diff --git a/KanSan/KanSan.csproj b/KanSan/KanSan.csproj index 55d7e80..f4f8a76 100644 --- a/KanSan/KanSan.csproj +++ b/KanSan/KanSan.csproj @@ -18,6 +18,7 @@ + diff --git a/KanSan/MainWindow.xaml b/KanSan/MainWindow.xaml index c7f45e3..c2761c6 100644 --- a/KanSan/MainWindow.xaml +++ b/KanSan/MainWindow.xaml @@ -1,12 +1,16 @@ - + + + @@ -37,4 +41,4 @@ - + diff --git a/KanSan/MainWindow.xaml.cs b/KanSan/MainWindow.xaml.cs index 3eb63ee..3bffc11 100644 --- a/KanSan/MainWindow.xaml.cs +++ b/KanSan/MainWindow.xaml.cs @@ -17,28 +17,29 @@ using KanSan.Base; using KanSan.Base.Models; using KanSan.ViewModel; using Microsoft.EntityFrameworkCore; +using Syncfusion.Windows.Shared; namespace KanSan { /// /// Interaction logic for MainWindow.xaml /// - public partial class MainWindow : Window + public partial class MainWindow : ChromelessWindow { UI.UCKundeEdit UCKundeEdit; UI.UCKundeList UCKundeList; UI.UCProjektList UCProjektList; UI.UCBaustelleList UCBaustelleList; - public MainWindow() { InitializeComponent(); this.DataContext = new MainWindowViewModel(); - + UCKundeList = new UI.UCKundeList(); UCKundeList.KundeAdded += UCKundeList_KundeAdded; UCKundeList.KundeSelect += UCKundeList_KundeSelect; + } private void UCProjektList_ProjektAdded(object sender, UI.SelectProjektEventArgs e)