From 62ab51894a43de74b809d6430438722456e04d91 Mon Sep 17 00:00:00 2001
From: NoKnownName <116956302+NoKnownName@users.noreply.github.com>
Date: Wed, 27 Aug 2025 10:34:08 +0200
Subject: [PATCH] Projekt erstellt
---
PenAndPaperFinal_Final.sln | 25 +++++
PenAndPaperFinal_Final/Anmeldung.xaml | 27 ++++++
PenAndPaperFinal_Final/Anmeldung.xaml.cs | 27 ++++++
PenAndPaperFinal_Final/App.xaml | 9 ++
PenAndPaperFinal_Final/App.xaml.cs | 14 +++
PenAndPaperFinal_Final/AssemblyInfo.cs | 10 ++
PenAndPaperFinal_Final/Charakter.xaml | 36 +++++++
PenAndPaperFinal_Final/Charakter.xaml.cs | 27 ++++++
PenAndPaperFinal_Final/Einstellungen.xaml | 42 ++++++++
PenAndPaperFinal_Final/Einstellungen.xaml.cs | 27 ++++++
PenAndPaperFinal_Final/Kampagne.xaml | 50 ++++++++++
PenAndPaperFinal_Final/Kampagne.xaml.cs | 27 ++++++
PenAndPaperFinal_Final/KampagnenDetails.xaml | 80 ++++++++++++++++
.../KampagnenDetails.xaml.cs | 27 ++++++
PenAndPaperFinal_Final/Karte.xaml | 25 +++++
PenAndPaperFinal_Final/Karte.xaml.cs | 27 ++++++
PenAndPaperFinal_Final/Lobby.xaml | 71 ++++++++++++++
PenAndPaperFinal_Final/Lobby.xaml.cs | 27 ++++++
PenAndPaperFinal_Final/MainWindow.xaml | 44 +++++++++
PenAndPaperFinal_Final/MainWindow.xaml.cs | 24 +++++
.../PenAndPaperFinal_Final.csproj | 11 +++
.../PenAndPaperFinal_Final.csproj.user | 76 +++++++++++++++
PenAndPaperFinal_Final/Registrieren.xaml | 29 ++++++
PenAndPaperFinal_Final/Registrieren.xaml.cs | 27 ++++++
PenAndPaperFinal_Final/Sitzung.xaml | 50 ++++++++++
PenAndPaperFinal_Final/Sitzung.xaml.cs | 27 ++++++
PenAndPaperFinal_Final/Würfel.xaml | 58 +++++++++++
PenAndPaperFinal_Final/Würfel.xaml.cs | 27 ++++++
...CoreApp,Version=v8.0.AssemblyAttributes.cs | 4 +
.../obj/Debug/net8.0-windows/Anmeldung.g.i.cs | 90 ++++++++++++++++++
.../obj/Debug/net8.0-windows/App.g.i.cs | 71 ++++++++++++++
.../obj/Debug/net8.0-windows/Charakter.g.i.cs | 76 +++++++++++++++
.../Debug/net8.0-windows/Einstellungen.g.i.cs | 76 +++++++++++++++
.../obj/Debug/net8.0-windows/Kampagne.g.i.cs | 76 +++++++++++++++
.../net8.0-windows/KampagnenDetails.g.i.cs | 76 +++++++++++++++
.../obj/Debug/net8.0-windows/Karte.g.i.cs | 90 ++++++++++++++++++
.../obj/Debug/net8.0-windows/Lobby.g.i.cs | 76 +++++++++++++++
.../Debug/net8.0-windows/MainWindow.g.i.cs | 76 +++++++++++++++
.../PenAndPaperFinal_Final.AssemblyInfo.cs | 25 +++++
...dPaperFinal_Final.AssemblyInfoInputs.cache | 1 +
....GeneratedMSBuildEditorConfig.editorconfig | 13 +++
.../PenAndPaperFinal_Final.GlobalUsings.g.cs | 6 ++
.../PenAndPaperFinal_Final.assets.cache | Bin 0 -> 150 bytes
.../PenAndPaperFinal_Final.designer.deps.json | 11 +++
...perFinal_Final.designer.runtimeconfig.json | 23 +++++
...nAndPaperFinal_Final_MarkupCompile.i.cache | 20 ++++
...enAndPaperFinal_Final_MarkupCompile.i.lref | 5 +
.../Debug/net8.0-windows/Registrieren.g.i.cs | 84 ++++++++++++++++
.../obj/Debug/net8.0-windows/Sitzung.g.i.cs | 76 +++++++++++++++
.../obj/Debug/net8.0-windows/Würfel.g.i.cs | 76 +++++++++++++++
...dPaperFinal_Final.csproj.nuget.dgspec.json | 71 ++++++++++++++
...enAndPaperFinal_Final.csproj.nuget.g.props | 15 +++
...AndPaperFinal_Final.csproj.nuget.g.targets | 2 +
.../obj/project.assets.json | 76 +++++++++++++++
.../obj/project.nuget.cache | 8 ++
55 files changed, 2174 insertions(+)
create mode 100644 PenAndPaperFinal_Final.sln
create mode 100644 PenAndPaperFinal_Final/Anmeldung.xaml
create mode 100644 PenAndPaperFinal_Final/Anmeldung.xaml.cs
create mode 100644 PenAndPaperFinal_Final/App.xaml
create mode 100644 PenAndPaperFinal_Final/App.xaml.cs
create mode 100644 PenAndPaperFinal_Final/AssemblyInfo.cs
create mode 100644 PenAndPaperFinal_Final/Charakter.xaml
create mode 100644 PenAndPaperFinal_Final/Charakter.xaml.cs
create mode 100644 PenAndPaperFinal_Final/Einstellungen.xaml
create mode 100644 PenAndPaperFinal_Final/Einstellungen.xaml.cs
create mode 100644 PenAndPaperFinal_Final/Kampagne.xaml
create mode 100644 PenAndPaperFinal_Final/Kampagne.xaml.cs
create mode 100644 PenAndPaperFinal_Final/KampagnenDetails.xaml
create mode 100644 PenAndPaperFinal_Final/KampagnenDetails.xaml.cs
create mode 100644 PenAndPaperFinal_Final/Karte.xaml
create mode 100644 PenAndPaperFinal_Final/Karte.xaml.cs
create mode 100644 PenAndPaperFinal_Final/Lobby.xaml
create mode 100644 PenAndPaperFinal_Final/Lobby.xaml.cs
create mode 100644 PenAndPaperFinal_Final/MainWindow.xaml
create mode 100644 PenAndPaperFinal_Final/MainWindow.xaml.cs
create mode 100644 PenAndPaperFinal_Final/PenAndPaperFinal_Final.csproj
create mode 100644 PenAndPaperFinal_Final/PenAndPaperFinal_Final.csproj.user
create mode 100644 PenAndPaperFinal_Final/Registrieren.xaml
create mode 100644 PenAndPaperFinal_Final/Registrieren.xaml.cs
create mode 100644 PenAndPaperFinal_Final/Sitzung.xaml
create mode 100644 PenAndPaperFinal_Final/Sitzung.xaml.cs
create mode 100644 PenAndPaperFinal_Final/Würfel.xaml
create mode 100644 PenAndPaperFinal_Final/Würfel.xaml.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Anmeldung.g.i.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/App.g.i.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Charakter.g.i.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Einstellungen.g.i.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Kampagne.g.i.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/KampagnenDetails.g.i.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Karte.g.i.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Lobby.g.i.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/MainWindow.g.i.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.AssemblyInfo.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.AssemblyInfoInputs.cache
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.GeneratedMSBuildEditorConfig.editorconfig
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.GlobalUsings.g.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.assets.cache
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.designer.deps.json
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.designer.runtimeconfig.json
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final_MarkupCompile.i.cache
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final_MarkupCompile.i.lref
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Registrieren.g.i.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Sitzung.g.i.cs
create mode 100644 PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Würfel.g.i.cs
create mode 100644 PenAndPaperFinal_Final/obj/PenAndPaperFinal_Final.csproj.nuget.dgspec.json
create mode 100644 PenAndPaperFinal_Final/obj/PenAndPaperFinal_Final.csproj.nuget.g.props
create mode 100644 PenAndPaperFinal_Final/obj/PenAndPaperFinal_Final.csproj.nuget.g.targets
create mode 100644 PenAndPaperFinal_Final/obj/project.assets.json
create mode 100644 PenAndPaperFinal_Final/obj/project.nuget.cache
diff --git a/PenAndPaperFinal_Final.sln b/PenAndPaperFinal_Final.sln
new file mode 100644
index 0000000..25d989f
--- /dev/null
+++ b/PenAndPaperFinal_Final.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.11.35222.181
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PenAndPaperFinal_Final", "PenAndPaperFinal_Final\PenAndPaperFinal_Final.csproj", "{6D305D30-4A09-4678-B2E5-E0CFB787D818}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {6D305D30-4A09-4678-B2E5-E0CFB787D818}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {6D305D30-4A09-4678-B2E5-E0CFB787D818}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {6D305D30-4A09-4678-B2E5-E0CFB787D818}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {6D305D30-4A09-4678-B2E5-E0CFB787D818}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {6D9D914A-AD3A-4BD3-AAB4-D4BCC60193A7}
+ EndGlobalSection
+EndGlobal
diff --git a/PenAndPaperFinal_Final/Anmeldung.xaml b/PenAndPaperFinal_Final/Anmeldung.xaml
new file mode 100644
index 0000000..cf28539
--- /dev/null
+++ b/PenAndPaperFinal_Final/Anmeldung.xaml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+ Benutzername
+
+
+
+
+
+
+
+
+
diff --git a/PenAndPaperFinal_Final/Anmeldung.xaml.cs b/PenAndPaperFinal_Final/Anmeldung.xaml.cs
new file mode 100644
index 0000000..416bf28
--- /dev/null
+++ b/PenAndPaperFinal_Final/Anmeldung.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 PenAndPaperFinal_Final
+{
+ ///
+ /// Interaktionslogik für Anmeldung.xaml
+ ///
+ public partial class Anmeldung : Window
+ {
+ public Anmeldung()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/PenAndPaperFinal_Final/App.xaml b/PenAndPaperFinal_Final/App.xaml
new file mode 100644
index 0000000..1b628dd
--- /dev/null
+++ b/PenAndPaperFinal_Final/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/PenAndPaperFinal_Final/App.xaml.cs b/PenAndPaperFinal_Final/App.xaml.cs
new file mode 100644
index 0000000..3128613
--- /dev/null
+++ b/PenAndPaperFinal_Final/App.xaml.cs
@@ -0,0 +1,14 @@
+using System.Configuration;
+using System.Data;
+using System.Windows;
+
+namespace PenAndPaperFinal_Final
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+
+}
diff --git a/PenAndPaperFinal_Final/AssemblyInfo.cs b/PenAndPaperFinal_Final/AssemblyInfo.cs
new file mode 100644
index 0000000..b0ec827
--- /dev/null
+++ b/PenAndPaperFinal_Final/AssemblyInfo.cs
@@ -0,0 +1,10 @@
+using System.Windows;
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
+ //(used if a resource is not found in the page,
+ // or application resource dictionaries)
+ ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
+ //(used if a resource is not found in the page,
+ // app, or any theme specific resource dictionaries)
+)]
diff --git a/PenAndPaperFinal_Final/Charakter.xaml b/PenAndPaperFinal_Final/Charakter.xaml
new file mode 100644
index 0000000..dca59db
--- /dev/null
+++ b/PenAndPaperFinal_Final/Charakter.xaml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+ Magier
+ Krieger
+ Schurke
+ Kleriker
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PenAndPaperFinal_Final/Charakter.xaml.cs b/PenAndPaperFinal_Final/Charakter.xaml.cs
new file mode 100644
index 0000000..1c04ee0
--- /dev/null
+++ b/PenAndPaperFinal_Final/Charakter.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 PenAndPaperFinal_Final
+{
+ ///
+ /// Interaktionslogik für Charakter.xaml
+ ///
+ public partial class Charakter : Window
+ {
+ public Charakter()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/PenAndPaperFinal_Final/Einstellungen.xaml b/PenAndPaperFinal_Final/Einstellungen.xaml
new file mode 100644
index 0000000..3b12e2b
--- /dev/null
+++ b/PenAndPaperFinal_Final/Einstellungen.xaml
@@ -0,0 +1,42 @@
+
+
+ Einstellungen
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ProfilBild auswählen :
+
+
+ Benutzername :
+
+
+
+ Sprache :
+
+
+
+
+
+
diff --git a/PenAndPaperFinal_Final/Einstellungen.xaml.cs b/PenAndPaperFinal_Final/Einstellungen.xaml.cs
new file mode 100644
index 0000000..da71ed3
--- /dev/null
+++ b/PenAndPaperFinal_Final/Einstellungen.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 PenAndPaperFinal_Final
+{
+ ///
+ /// Interaktionslogik für Einstellungen.xaml
+ ///
+ public partial class Einstellungen : Window
+ {
+ public Einstellungen()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/PenAndPaperFinal_Final/Kampagne.xaml b/PenAndPaperFinal_Final/Kampagne.xaml
new file mode 100644
index 0000000..fffafcb
--- /dev/null
+++ b/PenAndPaperFinal_Final/Kampagne.xaml
@@ -0,0 +1,50 @@
+
+
+ Kampagnen
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Titel :
+
+ BlaBlaBla
+
+ Beschreibung :
+
+
+
+ BlaBlaBla
+
+
+
+
+
+
+
+
diff --git a/PenAndPaperFinal_Final/Kampagne.xaml.cs b/PenAndPaperFinal_Final/Kampagne.xaml.cs
new file mode 100644
index 0000000..3b78a1d
--- /dev/null
+++ b/PenAndPaperFinal_Final/Kampagne.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 PenAndPaperFinal_Final
+{
+ ///
+ /// Interaktionslogik für Kampagne.xaml
+ ///
+ public partial class Kampagne : Window
+ {
+ public Kampagne()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/PenAndPaperFinal_Final/KampagnenDetails.xaml b/PenAndPaperFinal_Final/KampagnenDetails.xaml
new file mode 100644
index 0000000..4fc801f
--- /dev/null
+++ b/PenAndPaperFinal_Final/KampagnenDetails.xaml
@@ -0,0 +1,80 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PenAndPaperFinal_Final/KampagnenDetails.xaml.cs b/PenAndPaperFinal_Final/KampagnenDetails.xaml.cs
new file mode 100644
index 0000000..8b10625
--- /dev/null
+++ b/PenAndPaperFinal_Final/KampagnenDetails.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 PenAndPaperFinal_Final
+{
+ ///
+ /// Interaktionslogik für KampagnenDetails.xaml
+ ///
+ public partial class KampagnenDetails : Window
+ {
+ public KampagnenDetails()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/PenAndPaperFinal_Final/Karte.xaml b/PenAndPaperFinal_Final/Karte.xaml
new file mode 100644
index 0000000..410c85d
--- /dev/null
+++ b/PenAndPaperFinal_Final/Karte.xaml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PenAndPaperFinal_Final/Karte.xaml.cs b/PenAndPaperFinal_Final/Karte.xaml.cs
new file mode 100644
index 0000000..0ae30cc
--- /dev/null
+++ b/PenAndPaperFinal_Final/Karte.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 PenAndPaperFinal_Final
+{
+ ///
+ /// Interaktionslogik für Karte.xaml
+ ///
+ public partial class Karte : Window
+ {
+ public Karte()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/PenAndPaperFinal_Final/Lobby.xaml b/PenAndPaperFinal_Final/Lobby.xaml
new file mode 100644
index 0000000..5fb50b1
--- /dev/null
+++ b/PenAndPaperFinal_Final/Lobby.xaml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PenAndPaperFinal_Final/Lobby.xaml.cs b/PenAndPaperFinal_Final/Lobby.xaml.cs
new file mode 100644
index 0000000..caebafd
--- /dev/null
+++ b/PenAndPaperFinal_Final/Lobby.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 PenAndPaperFinal_Final
+{
+ ///
+ /// Interaktionslogik für Lobby.xaml
+ ///
+ public partial class Lobby : Window
+ {
+ public Lobby()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/PenAndPaperFinal_Final/MainWindow.xaml b/PenAndPaperFinal_Final/MainWindow.xaml
new file mode 100644
index 0000000..231eee8
--- /dev/null
+++ b/PenAndPaperFinal_Final/MainWindow.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PenAndPaperFinal_Final/MainWindow.xaml.cs b/PenAndPaperFinal_Final/MainWindow.xaml.cs
new file mode 100644
index 0000000..8b1e4c3
--- /dev/null
+++ b/PenAndPaperFinal_Final/MainWindow.xaml.cs
@@ -0,0 +1,24 @@
+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 PenAndPaperFinal_Final
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+ }
+}
\ No newline at end of file
diff --git a/PenAndPaperFinal_Final/PenAndPaperFinal_Final.csproj b/PenAndPaperFinal_Final/PenAndPaperFinal_Final.csproj
new file mode 100644
index 0000000..e3e33e3
--- /dev/null
+++ b/PenAndPaperFinal_Final/PenAndPaperFinal_Final.csproj
@@ -0,0 +1,11 @@
+
+
+
+ WinExe
+ net8.0-windows
+ enable
+ enable
+ true
+
+
+
diff --git a/PenAndPaperFinal_Final/PenAndPaperFinal_Final.csproj.user b/PenAndPaperFinal_Final/PenAndPaperFinal_Final.csproj.user
new file mode 100644
index 0000000..fb50aeb
--- /dev/null
+++ b/PenAndPaperFinal_Final/PenAndPaperFinal_Final.csproj.user
@@ -0,0 +1,76 @@
+
+
+
+
+
+ Designer
+
+
+
+
+ Code
+
+
+ Code
+
+
+ Code
+
+
+ Code
+
+
+ Code
+
+
+ Code
+
+
+ Code
+
+
+ Code
+
+
+ Code
+
+
+ Code
+
+
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+
\ No newline at end of file
diff --git a/PenAndPaperFinal_Final/Registrieren.xaml b/PenAndPaperFinal_Final/Registrieren.xaml
new file mode 100644
index 0000000..406b675
--- /dev/null
+++ b/PenAndPaperFinal_Final/Registrieren.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+ Benutzername eingeben
+
+ Passwort eingeben
+
+ Passwort bestätigen
+
+
+
+
+
+
+
diff --git a/PenAndPaperFinal_Final/Registrieren.xaml.cs b/PenAndPaperFinal_Final/Registrieren.xaml.cs
new file mode 100644
index 0000000..d0408c5
--- /dev/null
+++ b/PenAndPaperFinal_Final/Registrieren.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 PenAndPaperFinal_Final
+{
+ ///
+ /// Interaktionslogik für Registrieren.xaml
+ ///
+ public partial class Registrieren : Window
+ {
+ public Registrieren()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/PenAndPaperFinal_Final/Sitzung.xaml b/PenAndPaperFinal_Final/Sitzung.xaml
new file mode 100644
index 0000000..22d8468
--- /dev/null
+++ b/PenAndPaperFinal_Final/Sitzung.xaml
@@ -0,0 +1,50 @@
+
+
+ Sitzungen
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sitzung erstellen
+
+ Sitzung beitreten
+
+ Titel eingeben
+
+
+
+ Code eingeben
+
+
+
+
+
+
+
+
diff --git a/PenAndPaperFinal_Final/Sitzung.xaml.cs b/PenAndPaperFinal_Final/Sitzung.xaml.cs
new file mode 100644
index 0000000..aad4e44
--- /dev/null
+++ b/PenAndPaperFinal_Final/Sitzung.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 PenAndPaperFinal_Final
+{
+ ///
+ /// Interaktionslogik für Sitzung.xaml
+ ///
+ public partial class Sitzung : Window
+ {
+ public Sitzung()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/PenAndPaperFinal_Final/Würfel.xaml b/PenAndPaperFinal_Final/Würfel.xaml
new file mode 100644
index 0000000..80e9e5d
--- /dev/null
+++ b/PenAndPaperFinal_Final/Würfel.xaml
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ D4
+ D6
+ D8
+ D10
+ D12
+ D20
+ D100
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PenAndPaperFinal_Final/Würfel.xaml.cs b/PenAndPaperFinal_Final/Würfel.xaml.cs
new file mode 100644
index 0000000..1892805
--- /dev/null
+++ b/PenAndPaperFinal_Final/Würfel.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 PenAndPaperFinal_Final
+{
+ ///
+ /// Interaktionslogik für Würfel.xaml
+ ///
+ public partial class Würfel : Window
+ {
+ public Würfel()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2217181
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Anmeldung.g.i.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Anmeldung.g.i.cs
new file mode 100644
index 0000000..64feab0
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Anmeldung.g.i.cs
@@ -0,0 +1,90 @@
+#pragma checksum "..\..\..\Anmeldung.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "07787A4C0742659B4D6DA86585C537D56A5A10E4"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using PenAndPaperFinal_Final;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PenAndPaperFinal_Final {
+
+
+ ///
+ /// Anmeldung
+ ///
+ public partial class Anmeldung : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+
+ #line 19 "..\..\..\Anmeldung.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.PasswordBox PasswortBox;
+
+ #line default
+ #line hidden
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/anmeldung.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\Anmeldung.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+ this.PasswortBox = ((System.Windows.Controls.PasswordBox)(target));
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/App.g.i.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/App.g.i.cs
new file mode 100644
index 0000000..5074ea7
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/App.g.i.cs
@@ -0,0 +1,71 @@
+#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BA97FBAF0D13F5343419D8D52532EC0C52ECC1FF"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using PenAndPaperFinal_Final;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PenAndPaperFinal_Final {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public static void Main() {
+ PenAndPaperFinal_Final.App app = new PenAndPaperFinal_Final.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Charakter.g.i.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Charakter.g.i.cs
new file mode 100644
index 0000000..33020d5
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Charakter.g.i.cs
@@ -0,0 +1,76 @@
+#pragma checksum "..\..\..\Charakter.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3473FDFE5F8EBD41D771B7A29702DB1CEF7A7D2E"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using PenAndPaperFinal_Final;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PenAndPaperFinal_Final {
+
+
+ ///
+ /// Charakter
+ ///
+ public partial class Charakter : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/charakter.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\Charakter.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Einstellungen.g.i.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Einstellungen.g.i.cs
new file mode 100644
index 0000000..cf93738
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Einstellungen.g.i.cs
@@ -0,0 +1,76 @@
+#pragma checksum "..\..\..\Einstellungen.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F3E471A2F57980E53D815E9C5A628BE465399806"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using PenAndPaperFinal_Final;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PenAndPaperFinal_Final {
+
+
+ ///
+ /// Einstellungen
+ ///
+ public partial class Einstellungen : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/einstellungen.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\Einstellungen.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Kampagne.g.i.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Kampagne.g.i.cs
new file mode 100644
index 0000000..1efafd3
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Kampagne.g.i.cs
@@ -0,0 +1,76 @@
+#pragma checksum "..\..\..\Kampagne.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F1F59FAC5C346B8616421FF65DD318EC274BAF1D"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using PenAndPaperFinal_Final;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PenAndPaperFinal_Final {
+
+
+ ///
+ /// Kampagne
+ ///
+ public partial class Kampagne : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/kampagne.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\Kampagne.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/KampagnenDetails.g.i.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/KampagnenDetails.g.i.cs
new file mode 100644
index 0000000..0a93965
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/KampagnenDetails.g.i.cs
@@ -0,0 +1,76 @@
+#pragma checksum "..\..\..\KampagnenDetails.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C024C5FB1E8324116D658391491D22882DBEABC0"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using PenAndPaperFinal_Final;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PenAndPaperFinal_Final {
+
+
+ ///
+ /// KampagnenDetails
+ ///
+ public partial class KampagnenDetails : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/kampagnendetails.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\KampagnenDetails.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Karte.g.i.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Karte.g.i.cs
new file mode 100644
index 0000000..16ba01a
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Karte.g.i.cs
@@ -0,0 +1,90 @@
+#pragma checksum "..\..\..\Karte.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E5996BDC7FE193C35CAF8CF8E5C3E7F12F51DBBD"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using PenAndPaperFinal_Final;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PenAndPaperFinal_Final {
+
+
+ ///
+ /// Karte
+ ///
+ public partial class Karte : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+
+ #line 20 "..\..\..\Karte.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Canvas KartenCanvas;
+
+ #line default
+ #line hidden
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/karte.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\Karte.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+ this.KartenCanvas = ((System.Windows.Controls.Canvas)(target));
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Lobby.g.i.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Lobby.g.i.cs
new file mode 100644
index 0000000..d86bc0e
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Lobby.g.i.cs
@@ -0,0 +1,76 @@
+#pragma checksum "..\..\..\Lobby.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "948FE5CC303CB72C5EDFDA8E5E4D84F9C0BC65CC"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using PenAndPaperFinal_Final;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PenAndPaperFinal_Final {
+
+
+ ///
+ /// Lobby
+ ///
+ public partial class Lobby : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/lobby.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\Lobby.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/MainWindow.g.i.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/MainWindow.g.i.cs
new file mode 100644
index 0000000..aa26cf9
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/MainWindow.g.i.cs
@@ -0,0 +1,76 @@
+#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DC3FEACEC1C9F1259AC569D8C958C5927AB7A3A9"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using PenAndPaperFinal_Final;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PenAndPaperFinal_Final {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.AssemblyInfo.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.AssemblyInfo.cs
new file mode 100644
index 0000000..b5e0108
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.AssemblyInfo.cs
@@ -0,0 +1,25 @@
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("PenAndPaperFinal_Final")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("PenAndPaperFinal_Final")]
+[assembly: System.Reflection.AssemblyTitleAttribute("PenAndPaperFinal_Final")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
+[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
+
+// Von der MSBuild WriteCodeFragment-Klasse generiert.
+
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.AssemblyInfoInputs.cache b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..5b84bf5
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+5beafbac7af829fa9ffaf5a2cc46d123973845a0db4ff1fa1a39b39d0e70c3fc
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.GeneratedMSBuildEditorConfig.editorconfig b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..bb94b04
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,13 @@
+is_global = true
+build_property.TargetFramework = net8.0-windows
+build_property.TargetPlatformMinVersion = 7.0
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = PenAndPaperFinal_Final
+build_property.ProjectDir = C:\Users\bib\source\repos\PenAndPaperFinal_Final\PenAndPaperFinal_Final\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.GlobalUsings.g.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.GlobalUsings.g.cs
new file mode 100644
index 0000000..08bb19f
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.GlobalUsings.g.cs
@@ -0,0 +1,6 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.Linq;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.assets.cache b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/PenAndPaperFinal_Final.assets.cache
new file mode 100644
index 0000000000000000000000000000000000000000..19dd14d4def4efc9b18bcac7155dd8b7d69e8ac4
GIT binary patch
literal 150
zcmWIWc6a1qU|`s+{GF?A-NOS}N00Nxw)Icnwc|VAx6S`{vCgb6oO|P6*d(ADVgVyi
lp{%o2OlWaxQE^OCW>Sn^UTJ!2NlZava&}^RYH
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using PenAndPaperFinal_Final;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PenAndPaperFinal_Final
+{
+
+
+ ///
+ /// Registrieren
+ ///
+ public partial class Registrieren : System.Windows.Window, System.Windows.Markup.IComponentConnector
+ {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public void InitializeComponent()
+ {
+ if (_contentLoaded)
+ {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/registrieren.xaml", System.UriKind.Relative);
+
+#line 1 "..\..\..\Registrieren.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+#line default
+#line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
+ {
+ this._contentLoaded = true;
+ }
+
+ internal System.Windows.Controls.TextBox PasswortBox;
+ }
+}
+
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Sitzung.g.i.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Sitzung.g.i.cs
new file mode 100644
index 0000000..093ea72
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Sitzung.g.i.cs
@@ -0,0 +1,76 @@
+#pragma checksum "..\..\..\Sitzung.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7A7888DEDF908981646719B9F26269BABE120DBB"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using PenAndPaperFinal_Final;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PenAndPaperFinal_Final {
+
+
+ ///
+ /// Sitzung
+ ///
+ public partial class Sitzung : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/sitzung.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\Sitzung.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Würfel.g.i.cs b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Würfel.g.i.cs
new file mode 100644
index 0000000..b358782
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/Debug/net8.0-windows/Würfel.g.i.cs
@@ -0,0 +1,76 @@
+#pragma checksum "..\..\..\Würfel.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BC41B6B0B7DAEC6B4CD8D5F33BBBF212DC2D5337"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using PenAndPaperFinal_Final;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PenAndPaperFinal_Final {
+
+
+ ///
+ /// Würfel
+ ///
+ public partial class Würfel : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/w%c3%bcrfel.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\Würfel.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/PenAndPaperFinal_Final/obj/PenAndPaperFinal_Final.csproj.nuget.dgspec.json b/PenAndPaperFinal_Final/obj/PenAndPaperFinal_Final.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..aafdf0e
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/PenAndPaperFinal_Final.csproj.nuget.dgspec.json
@@ -0,0 +1,71 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj",
+ "projectName": "PenAndPaperFinal_Final",
+ "projectPath": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj",
+ "packagesPath": "C:\\Users\\bib\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0-windows"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {}
+ },
+ "frameworks": {
+ "net8.0-windows7.0": {
+ "targetAlias": "net8.0-windows",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ }
+ },
+ "frameworks": {
+ "net8.0-windows7.0": {
+ "targetAlias": "net8.0-windows",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.WindowsDesktop.App.WPF": {
+ "privateAssets": "none"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PenAndPaperFinal_Final/obj/PenAndPaperFinal_Final.csproj.nuget.g.props b/PenAndPaperFinal_Final/obj/PenAndPaperFinal_Final.csproj.nuget.g.props
new file mode 100644
index 0000000..86c23a6
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/PenAndPaperFinal_Final.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\bib\.nuget\packages\
+ PackageReference
+ 6.11.0
+
+
+
+
+
\ No newline at end of file
diff --git a/PenAndPaperFinal_Final/obj/PenAndPaperFinal_Final.csproj.nuget.g.targets b/PenAndPaperFinal_Final/obj/PenAndPaperFinal_Final.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/PenAndPaperFinal_Final.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/PenAndPaperFinal_Final/obj/project.assets.json b/PenAndPaperFinal_Final/obj/project.assets.json
new file mode 100644
index 0000000..e4d81ac
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/project.assets.json
@@ -0,0 +1,76 @@
+{
+ "version": 3,
+ "targets": {
+ "net8.0-windows7.0": {}
+ },
+ "libraries": {},
+ "projectFileDependencyGroups": {
+ "net8.0-windows7.0": []
+ },
+ "packageFolders": {
+ "C:\\Users\\bib\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj",
+ "projectName": "PenAndPaperFinal_Final",
+ "projectPath": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj",
+ "packagesPath": "C:\\Users\\bib\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0-windows"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {}
+ },
+ "frameworks": {
+ "net8.0-windows7.0": {
+ "targetAlias": "net8.0-windows",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ }
+ },
+ "frameworks": {
+ "net8.0-windows7.0": {
+ "targetAlias": "net8.0-windows",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.WindowsDesktop.App.WPF": {
+ "privateAssets": "none"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/PenAndPaperFinal_Final/obj/project.nuget.cache b/PenAndPaperFinal_Final/obj/project.nuget.cache
new file mode 100644
index 0000000..0c719ea
--- /dev/null
+++ b/PenAndPaperFinal_Final/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{
+ "version": 2,
+ "dgSpecHash": "HlP9Zh5S6Cc=",
+ "success": true,
+ "projectFilePath": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj",
+ "expectedPackageFiles": [],
+ "logs": []
+}
\ No newline at end of file