diff --git a/Planungsboard.Presentation/UserControls/MenuUserControl.xaml b/Planungsboard.Presentation/UserControls/MenuUserControl.xaml index d5b37cd..8a45386 100644 --- a/Planungsboard.Presentation/UserControls/MenuUserControl.xaml +++ b/Planungsboard.Presentation/UserControls/MenuUserControl.xaml @@ -1,7 +1,7 @@ + xmlns:viewModels="clr-namespace:Planungsboard.Presentation.ViewModels"> - + @@ -139,6 +137,7 @@ + diff --git a/Planungsboard.Presentation/Views/MainWindow.xaml.cs b/Planungsboard.Presentation/Views/MainWindow.xaml.cs index 6ad1a7e..6b1c348 100644 --- a/Planungsboard.Presentation/Views/MainWindow.xaml.cs +++ b/Planungsboard.Presentation/Views/MainWindow.xaml.cs @@ -26,7 +26,7 @@ public MainWindow() InitializeComponent(); } - private void FrameworkElement_OnSizeChanged2(object sender, SizeChangedEventArgs e) + private void FrameworkElement_OnSizeChanged(object sender, SizeChangedEventArgs e) { var grid = sender as Grid; var firstColumn = grid.ColumnDefinitions.FirstOrDefault(); diff --git a/Planungsboard.Presentation/Views/NewEntityWindows.xaml b/Planungsboard.Presentation/Views/NewEntityWindows.xaml new file mode 100644 index 0000000..59e3c45 --- /dev/null +++ b/Planungsboard.Presentation/Views/NewEntityWindows.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/Planungsboard.Presentation/Views/NewEntityWindows.xaml.cs b/Planungsboard.Presentation/Views/NewEntityWindows.xaml.cs new file mode 100644 index 0000000..90df365 --- /dev/null +++ b/Planungsboard.Presentation/Views/NewEntityWindows.xaml.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Planungsboard.Presentation.Views +{ + /// + /// Interaktionslogik für NewEntityWindows.xaml + /// + public partial class NewEntityWindows : Window + { + public NewEntityWindows() + { + InitializeComponent(); + } + + } + + public class NewGenericEntityWindows : NewEntityWindows + { + public NewGenericEntityWindows() + { + + } + + public T Instance { get; set; } + } +}