diff --git a/BeWo/BeWo.csproj b/BeWo/BeWo.csproj index 17a294bf5..3b6fe5270 100644 --- a/BeWo/BeWo.csproj +++ b/BeWo/BeWo.csproj @@ -98,6 +98,9 @@ + + AbsenceTimesCreationView.xaml + @@ -133,6 +136,10 @@ AnimatedBeWoWindow.xaml + + Designer + MSBuild:Compile + Designer MSBuild:Compile diff --git a/BeWo/Scheduling/View/AbsenceTimesCreationView.xaml b/BeWo/Scheduling/View/AbsenceTimesCreationView.xaml new file mode 100644 index 000000000..60a22f97b --- /dev/null +++ b/BeWo/Scheduling/View/AbsenceTimesCreationView.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/BeWo/Scheduling/View/AbsenceTimesCreationView.xaml.cs b/BeWo/Scheduling/View/AbsenceTimesCreationView.xaml.cs new file mode 100644 index 000000000..c0a5647eb --- /dev/null +++ b/BeWo/Scheduling/View/AbsenceTimesCreationView.xaml.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +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.Shapes; + +namespace BeWo.Scheduling.View +{ + /// + /// Interaktionslogik für AbsenceTimesCreationView.xaml + /// + public partial class AbsenceTimesCreationView : Window + { + public AbsenceTimesCreationView() + { + InitializeComponent(); + } + } +}