From 5efd5aa7a172d73fd9378d73117106c90f4e4f74 Mon Sep 17 00:00:00 2001 From: HirschleM Date: Tue, 3 Feb 2026 07:02:06 +0100 Subject: [PATCH] =?UTF-8?q?MH:=20View=20zum=20Abwesenheiten=20aus=20Kalend?= =?UTF-8?q?er=20=C3=BCbertragen=20vorbereitet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BeWo/BeWo.csproj | 7 +++++ .../View/AbsenceTimesCreationView.xaml | 12 +++++++++ .../View/AbsenceTimesCreationView.xaml.cs | 27 +++++++++++++++++++ 3 files changed, 46 insertions(+) create mode 100644 BeWo/Scheduling/View/AbsenceTimesCreationView.xaml create mode 100644 BeWo/Scheduling/View/AbsenceTimesCreationView.xaml.cs 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(); + } + } +}