diff --git a/WpfAppgroup.sln b/WpfAppgroup.sln
new file mode 100644
index 0000000..8fb3676
--- /dev/null
+++ b/WpfAppgroup.sln
@@ -0,0 +1,22 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.12.35728.132 d17.12
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfAppgroup", "WpfAppgroup\WpfAppgroup.csproj", "{CEE3DB0A-7D33-4626-9C60-584186ED21AC}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {CEE3DB0A-7D33-4626-9C60-584186ED21AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {CEE3DB0A-7D33-4626-9C60-584186ED21AC}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {CEE3DB0A-7D33-4626-9C60-584186ED21AC}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {CEE3DB0A-7D33-4626-9C60-584186ED21AC}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/WpfAppgroup/App.xaml b/WpfAppgroup/App.xaml
new file mode 100644
index 0000000..8ff650c
--- /dev/null
+++ b/WpfAppgroup/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/WpfAppgroup/App.xaml.cs b/WpfAppgroup/App.xaml.cs
new file mode 100644
index 0000000..492e76c
--- /dev/null
+++ b/WpfAppgroup/App.xaml.cs
@@ -0,0 +1,14 @@
+using System.Configuration;
+using System.Data;
+using System.Windows;
+
+namespace WpfAppgroup
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+
+}
diff --git a/WpfAppgroup/AssemblyInfo.cs b/WpfAppgroup/AssemblyInfo.cs
new file mode 100644
index 0000000..b0ec827
--- /dev/null
+++ b/WpfAppgroup/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/WpfAppgroup/MainWindow.xaml b/WpfAppgroup/MainWindow.xaml
new file mode 100644
index 0000000..e78f4a1
--- /dev/null
+++ b/WpfAppgroup/MainWindow.xaml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WpfAppgroup/MainWindow.xaml.cs b/WpfAppgroup/MainWindow.xaml.cs
new file mode 100644
index 0000000..0099a33
--- /dev/null
+++ b/WpfAppgroup/MainWindow.xaml.cs
@@ -0,0 +1,94 @@
+using System; // Grundlegende Funktionen (wie Umrechnung, Zahlen usw.)
+
+using System.Windows; // Alles für Fenster (WPF)
+
+using System.Windows.Controls; // Alles für Buttons, TextBoxen, ComboBox usw.
+
+namespace Waehrungsrechner // Unser Projektname
+
+{
+
+ // Die Hauptklasse, die das Fenster (Window) verwaltet
+
+ public partial class MainWindow : Window
+
+ {
+
+ // Die Währungen
+
+ private const double EuroZuPfund = 0.85; // 1 Euro = 0.85 Pfund
+
+ private const double PfundZuEuro = 1.18; // 1 Pfund = 1.18 Euro
+
+
+
+ public MainWindow()
+
+ {
+
+ InitializeComponent(); // Diese Methode baut das Fenster und verbindet es mit dem XAML
+
+ }
+
+ // Diese Methode wird aufgerufen, wenn der Benutzer auf "Umrechnen" klickt
+
+ private void Umrechnen_Click(object sender, RoutedEventArgs e)
+
+ {
+
+ double betrag; // Hier speichern wir den eingegebenen Betrag (z. B. 100.00)
+
+ // Wenn istZahl = true wird die Zahl in "betrag" gespeichert
+
+ bool istZahl = double.TryParse(BetragTextBox.Text, out betrag);
+
+ if (istZahl) // wenn eeingegeben zahl gültig ist
+
+ {
+
+ // Hole den ausgewählten Text aus der ComboBox z. B."Euro zu Pfund"
+ //RichtungComboBox.SelectedItem = „Euro zu Pfund“ oder „Pfund zu Euro“
+
+
+ string richtung = ((ComboBoxItem)RichtungComboBox.SelectedItem).Content.ToString();
+
+ double ergebnis = 0; // Hier speichern wir das Ergebnis der Umrechnung, Der Computer rechnet dann den Betrag um (z. B. 100 € → 85 £)
+
+
+ //Der Code fragt nach, ob der Benutzer „Euro zu Pfund“ oder „Pfund zu Euro“
+
+ if (richtung == "Euro zu Pfund")
+
+ {
+
+ ergebnis = betrag * EuroZuPfund; // Euro zu Pfund
+
+ ErgebnisLabel.Content = "Ergebnis: " + ergebnis.ToString("F2") + " £";
+
+ }
+
+ else
+
+ {
+
+ ergebnis = betrag * PfundZuEuro; // Pfund zu Euro
+
+ ErgebnisLabel.Content = "Ergebnis: " + ergebnis.ToString("F2") + " €";
+
+ }
+
+ }
+
+ else // bei ungültiger zahl kommt das hier
+
+ {
+
+ ErgebnisLabel.Content = "Ungültige Zahl!";
+
+ }
+
+ }
+
+ }
+
+}
\ No newline at end of file
diff --git a/WpfAppgroup/WpfAppgroup.csproj b/WpfAppgroup/WpfAppgroup.csproj
new file mode 100644
index 0000000..e3e33e3
--- /dev/null
+++ b/WpfAppgroup/WpfAppgroup.csproj
@@ -0,0 +1,11 @@
+
+
+
+ WinExe
+ net8.0-windows
+ enable
+ enable
+ true
+
+
+
diff --git a/WpfAppgroup/WpfAppgroup.csproj.user b/WpfAppgroup/WpfAppgroup.csproj.user
new file mode 100644
index 0000000..644b0a6
--- /dev/null
+++ b/WpfAppgroup/WpfAppgroup.csproj.user
@@ -0,0 +1,14 @@
+
+
+
+
+
+ Designer
+
+
+
+
+ Designer
+
+
+
\ No newline at end of file
diff --git a/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.deps.json b/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.deps.json
new file mode 100644
index 0000000..3dac0fb
--- /dev/null
+++ b/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.deps.json
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "WpfAppgroup/1.0.0": {
+ "runtime": {
+ "WpfAppgroup.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "WpfAppgroup/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.dll b/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.dll
new file mode 100644
index 0000000..f31d5f6
Binary files /dev/null and b/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.dll differ
diff --git a/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.exe b/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.exe
new file mode 100644
index 0000000..0e11ff4
Binary files /dev/null and b/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.exe differ
diff --git a/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.pdb b/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.pdb
new file mode 100644
index 0000000..3047d18
Binary files /dev/null and b/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.pdb differ
diff --git a/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.runtimeconfig.json b/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.runtimeconfig.json
new file mode 100644
index 0000000..b2dedf3
--- /dev/null
+++ b/WpfAppgroup/bin/Debug/net8.0-windows/WpfAppgroup.runtimeconfig.json
@@ -0,0 +1,19 @@
+{
+ "runtimeOptions": {
+ "tfm": "net8.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "8.0.0"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App",
+ "version": "8.0.0"
+ }
+ ],
+ "configProperties": {
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true,
+ "CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WpfAppgroup/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2217181
--- /dev/null
+++ b/WpfAppgroup/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/WpfAppgroup/obj/Debug/net8.0-windows/App.g.cs b/WpfAppgroup/obj/Debug/net8.0-windows/App.g.cs
new file mode 100644
index 0000000..3230e34
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/App.g.cs
@@ -0,0 +1,71 @@
+#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "009426200FBA7805929B430CFF96445BBA07F1CB"
+//------------------------------------------------------------------------------
+//
+// 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.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;
+using WpfAppgroup;
+
+
+namespace WpfAppgroup {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.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", "9.0.2.0")]
+ public static void Main() {
+ WpfAppgroup.App app = new WpfAppgroup.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/App.g.i.cs b/WpfAppgroup/obj/Debug/net8.0-windows/App.g.i.cs
new file mode 100644
index 0000000..3230e34
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/App.g.i.cs
@@ -0,0 +1,71 @@
+#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "009426200FBA7805929B430CFF96445BBA07F1CB"
+//------------------------------------------------------------------------------
+//
+// 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.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;
+using WpfAppgroup;
+
+
+namespace WpfAppgroup {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.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", "9.0.2.0")]
+ public static void Main() {
+ WpfAppgroup.App app = new WpfAppgroup.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/MainWindow.baml b/WpfAppgroup/obj/Debug/net8.0-windows/MainWindow.baml
new file mode 100644
index 0000000..9c8816c
Binary files /dev/null and b/WpfAppgroup/obj/Debug/net8.0-windows/MainWindow.baml differ
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/MainWindow.g.cs b/WpfAppgroup/obj/Debug/net8.0-windows/MainWindow.g.cs
new file mode 100644
index 0000000..0af7b9d
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/MainWindow.g.cs
@@ -0,0 +1,119 @@
+#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B76FE92CBE44BFA7E49E1BF26CCD3C33B44D1082"
+//------------------------------------------------------------------------------
+//
+// 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.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 Waehrungsrechner {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+
+ #line 13 "..\..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox BetragTextBox;
+
+ #line default
+ #line hidden
+
+
+ #line 19 "..\..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.ComboBox RichtungComboBox;
+
+ #line default
+ #line hidden
+
+
+ #line 32 "..\..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label ErgebnisLabel;
+
+ #line default
+ #line hidden
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/WpfAppgroup;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", "9.0.2.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.BetragTextBox = ((System.Windows.Controls.TextBox)(target));
+ return;
+ case 2:
+ this.RichtungComboBox = ((System.Windows.Controls.ComboBox)(target));
+ return;
+ case 3:
+
+ #line 28 "..\..\..\MainWindow.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Umrechnen_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 4:
+ this.ErgebnisLabel = ((System.Windows.Controls.Label)(target));
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/MainWindow.g.i.cs b/WpfAppgroup/obj/Debug/net8.0-windows/MainWindow.g.i.cs
new file mode 100644
index 0000000..0af7b9d
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/MainWindow.g.i.cs
@@ -0,0 +1,119 @@
+#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B76FE92CBE44BFA7E49E1BF26CCD3C33B44D1082"
+//------------------------------------------------------------------------------
+//
+// 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.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 Waehrungsrechner {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+
+ #line 13 "..\..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox BetragTextBox;
+
+ #line default
+ #line hidden
+
+
+ #line 19 "..\..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.ComboBox RichtungComboBox;
+
+ #line default
+ #line hidden
+
+
+ #line 32 "..\..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label ErgebnisLabel;
+
+ #line default
+ #line hidden
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/WpfAppgroup;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", "9.0.2.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.BetragTextBox = ((System.Windows.Controls.TextBox)(target));
+ return;
+ case 2:
+ this.RichtungComboBox = ((System.Windows.Controls.ComboBox)(target));
+ return;
+ case 3:
+
+ #line 28 "..\..\..\MainWindow.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Umrechnen_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 4:
+ this.ErgebnisLabel = ((System.Windows.Controls.Label)(target));
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.AssemblyInfo.cs b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.AssemblyInfo.cs
new file mode 100644
index 0000000..f3abab1
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.AssemblyInfo.cs
@@ -0,0 +1,24 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("WpfAppgroup")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a48f2cde188a4bbdae89ba6a68623ee2ee631903")]
+[assembly: System.Reflection.AssemblyProductAttribute("WpfAppgroup")]
+[assembly: System.Reflection.AssemblyTitleAttribute("WpfAppgroup")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
+[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.AssemblyInfoInputs.cache b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..96910b8
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+a005f8c1f1e72b0a9591cc11d9f573d9291e33ee02a28578916d7ccc7ef542a6
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.GeneratedMSBuildEditorConfig.editorconfig b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..9d592fb
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,16 @@
+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 = WpfAppgroup
+build_property.ProjectDir = C:\Users\bib\Desktop\wpf App\WpfAPP\WpfAppgroup\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.CsWinRTUseWindowsUIXamlProjections = false
+build_property.EffectiveAnalysisLevelStyle = 8.0
+build_property.EnableCodeStyleSeverity =
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.GlobalUsings.g.cs b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.GlobalUsings.g.cs
new file mode 100644
index 0000000..08bb19f
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.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/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.assets.cache b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.assets.cache
new file mode 100644
index 0000000..8727236
Binary files /dev/null and b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.assets.cache differ
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.csproj.BuildWithSkipAnalyzers b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.csproj.CoreCompileInputs.cache b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..b03b75d
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+bb66f1f650292d6fea8b90c54945e3549bf9d2f0ef2770d0c1068616891b210e
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.csproj.FileListAbsolute.txt b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..3a36870
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.csproj.FileListAbsolute.txt
@@ -0,0 +1,19 @@
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\bin\Debug\net8.0-windows\WpfAppgroup.exe
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\bin\Debug\net8.0-windows\WpfAppgroup.deps.json
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\bin\Debug\net8.0-windows\WpfAppgroup.runtimeconfig.json
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\bin\Debug\net8.0-windows\WpfAppgroup.dll
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\bin\Debug\net8.0-windows\WpfAppgroup.pdb
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\MainWindow.baml
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\MainWindow.g.cs
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\App.g.cs
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\WpfAppgroup_MarkupCompile.cache
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\WpfAppgroup.g.resources
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\WpfAppgroup.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\WpfAppgroup.AssemblyInfoInputs.cache
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\WpfAppgroup.AssemblyInfo.cs
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\WpfAppgroup.csproj.CoreCompileInputs.cache
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\WpfAppgroup.dll
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\refint\WpfAppgroup.dll
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\WpfAppgroup.pdb
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\WpfAppgroup.genruntimeconfig.cache
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\ref\WpfAppgroup.dll
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.designer.deps.json b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.designer.deps.json
new file mode 100644
index 0000000..8599efd
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.designer.deps.json
@@ -0,0 +1,11 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {}
+ },
+ "libraries": {}
+}
\ No newline at end of file
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.designer.runtimeconfig.json b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.designer.runtimeconfig.json
new file mode 100644
index 0000000..2da72d5
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.designer.runtimeconfig.json
@@ -0,0 +1,25 @@
+{
+ "runtimeOptions": {
+ "tfm": "net8.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "8.0.0"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App",
+ "version": "8.0.0"
+ }
+ ],
+ "additionalProbingPaths": [
+ "C:\\Users\\bib\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\bib\\.nuget\\packages",
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configProperties": {
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true,
+ "CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false,
+ "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.dll b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.dll
new file mode 100644
index 0000000..f31d5f6
Binary files /dev/null and b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.dll differ
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.g.resources b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.g.resources
new file mode 100644
index 0000000..e04a2fa
Binary files /dev/null and b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.g.resources differ
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.genruntimeconfig.cache b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.genruntimeconfig.cache
new file mode 100644
index 0000000..6c8d731
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.genruntimeconfig.cache
@@ -0,0 +1 @@
+f4ab1f17a376cac551351eab0127da7630bd4b7f2b907eaab0ed0aa351a481e9
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.pdb b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.pdb
new file mode 100644
index 0000000..3047d18
Binary files /dev/null and b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup.pdb differ
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_MarkupCompile.cache b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_MarkupCompile.cache
new file mode 100644
index 0000000..45a07ab
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_MarkupCompile.cache
@@ -0,0 +1,20 @@
+WpfAppgroup
+
+
+winexe
+C#
+.cs
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\
+WpfAppgroup
+none
+false
+TRACE;DEBUG;NET;NET8_0;NETCOREAPP
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\App.xaml
+11407045341
+
+47526372
+1981839832580
+MainWindow.xaml;
+
+False
+
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_MarkupCompile.i.cache b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_MarkupCompile.i.cache
new file mode 100644
index 0000000..df2f0b2
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_MarkupCompile.i.cache
@@ -0,0 +1,20 @@
+WpfAppgroup
+1.0.0.0
+
+winexe
+C#
+.cs
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\obj\Debug\net8.0-windows\
+WpfAppgroup
+none
+false
+TRACE;DEBUG;NET;NET8_0;NETCOREAPP
+C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\App.xaml
+11407045341
+
+6591106407
+1981839832580
+MainWindow.xaml;
+
+False
+
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.AssemblyInfo.cs b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..f072f0c
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.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("WpfAppgroup")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("WpfAppgroup")]
+[assembly: System.Reflection.AssemblyTitleAttribute("WpfAppgroup")]
+[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/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.AssemblyInfoInputs.cache b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..24bccd9
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+0ed3066562cb4b66fdc1ff413d34faf230681b48073289575112376ed5c4a7ad
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..910764c
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,16 @@
+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 = WpfAppgroup
+build_property.ProjectDir = C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.CsWinRTUseWindowsUIXamlProjections = false
+build_property.EffectiveAnalysisLevelStyle = 8.0
+build_property.EnableCodeStyleSeverity =
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.GlobalUsings.g.cs b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.GlobalUsings.g.cs
new file mode 100644
index 0000000..08bb19f
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.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/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.assets.cache b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.assets.cache
new file mode 100644
index 0000000..8b3bda5
Binary files /dev/null and b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.assets.cache differ
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.csproj.BuildWithSkipAnalyzers b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_fsxkw2mc_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.AssemblyInfo.cs b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.AssemblyInfo.cs
new file mode 100644
index 0000000..f072f0c
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.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("WpfAppgroup")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("WpfAppgroup")]
+[assembly: System.Reflection.AssemblyTitleAttribute("WpfAppgroup")]
+[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/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.AssemblyInfoInputs.cache b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..24bccd9
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+0ed3066562cb4b66fdc1ff413d34faf230681b48073289575112376ed5c4a7ad
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..910764c
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,16 @@
+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 = WpfAppgroup
+build_property.ProjectDir = C:\Users\bib\source\repos\WpfAppgroup\WpfAppgroup\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.CsWinRTUseWindowsUIXamlProjections = false
+build_property.EffectiveAnalysisLevelStyle = 8.0
+build_property.EnableCodeStyleSeverity =
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.GlobalUsings.g.cs b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.GlobalUsings.g.cs
new file mode 100644
index 0000000..08bb19f
--- /dev/null
+++ b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.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/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.assets.cache b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.assets.cache
new file mode 100644
index 0000000..a14f51a
Binary files /dev/null and b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.assets.cache differ
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.csproj.BuildWithSkipAnalyzers b/WpfAppgroup/obj/Debug/net8.0-windows/WpfAppgroup_wg501pul_wpftmp.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/apphost.exe b/WpfAppgroup/obj/Debug/net8.0-windows/apphost.exe
new file mode 100644
index 0000000..0e11ff4
Binary files /dev/null and b/WpfAppgroup/obj/Debug/net8.0-windows/apphost.exe differ
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/ref/WpfAppgroup.dll b/WpfAppgroup/obj/Debug/net8.0-windows/ref/WpfAppgroup.dll
new file mode 100644
index 0000000..8d44ba7
Binary files /dev/null and b/WpfAppgroup/obj/Debug/net8.0-windows/ref/WpfAppgroup.dll differ
diff --git a/WpfAppgroup/obj/Debug/net8.0-windows/refint/WpfAppgroup.dll b/WpfAppgroup/obj/Debug/net8.0-windows/refint/WpfAppgroup.dll
new file mode 100644
index 0000000..8d44ba7
Binary files /dev/null and b/WpfAppgroup/obj/Debug/net8.0-windows/refint/WpfAppgroup.dll differ
diff --git a/WpfAppgroup/obj/WpfAppgroup.csproj.nuget.dgspec.json b/WpfAppgroup/obj/WpfAppgroup.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..22dfde3
--- /dev/null
+++ b/WpfAppgroup/obj/WpfAppgroup.csproj.nuget.dgspec.json
@@ -0,0 +1,75 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\bib\\Desktop\\wpf App\\WpfAPP\\WpfAppgroup\\WpfAppgroup.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\bib\\Desktop\\wpf App\\WpfAPP\\WpfAppgroup\\WpfAppgroup.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\bib\\Desktop\\wpf App\\WpfAPP\\WpfAppgroup\\WpfAppgroup.csproj",
+ "projectName": "WpfAppgroup",
+ "projectPath": "C:\\Users\\bib\\Desktop\\wpf App\\WpfAPP\\WpfAppgroup\\WpfAppgroup.csproj",
+ "packagesPath": "C:\\Users\\bib\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\bib\\Desktop\\wpf App\\WpfAPP\\WpfAppgroup\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0-windows"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}
+ },
+ "frameworks": {
+ "net8.0-windows7.0": {
+ "targetAlias": "net8.0-windows",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ },
+ "SdkAnalysisLevel": "9.0.100"
+ },
+ "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\\9.0.103/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/WpfAppgroup/obj/WpfAppgroup.csproj.nuget.g.props b/WpfAppgroup/obj/WpfAppgroup.csproj.nuget.g.props
new file mode 100644
index 0000000..bda40b9
--- /dev/null
+++ b/WpfAppgroup/obj/WpfAppgroup.csproj.nuget.g.props
@@ -0,0 +1,16 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\bib\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ PackageReference
+ 6.12.2
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WpfAppgroup/obj/WpfAppgroup.csproj.nuget.g.targets b/WpfAppgroup/obj/WpfAppgroup.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/WpfAppgroup/obj/WpfAppgroup.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/WpfAppgroup/obj/project.assets.json b/WpfAppgroup/obj/project.assets.json
new file mode 100644
index 0000000..1a0b444
--- /dev/null
+++ b/WpfAppgroup/obj/project.assets.json
@@ -0,0 +1,81 @@
+{
+ "version": 3,
+ "targets": {
+ "net8.0-windows7.0": {}
+ },
+ "libraries": {},
+ "projectFileDependencyGroups": {
+ "net8.0-windows7.0": []
+ },
+ "packageFolders": {
+ "C:\\Users\\bib\\.nuget\\packages\\": {},
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\bib\\Desktop\\wpf App\\WpfAPP\\WpfAppgroup\\WpfAppgroup.csproj",
+ "projectName": "WpfAppgroup",
+ "projectPath": "C:\\Users\\bib\\Desktop\\wpf App\\WpfAPP\\WpfAppgroup\\WpfAppgroup.csproj",
+ "packagesPath": "C:\\Users\\bib\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\bib\\Desktop\\wpf App\\WpfAPP\\WpfAppgroup\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0-windows"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}
+ },
+ "frameworks": {
+ "net8.0-windows7.0": {
+ "targetAlias": "net8.0-windows",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ },
+ "SdkAnalysisLevel": "9.0.100"
+ },
+ "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\\9.0.103/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/WpfAppgroup/obj/project.nuget.cache b/WpfAppgroup/obj/project.nuget.cache
new file mode 100644
index 0000000..b4f75f9
--- /dev/null
+++ b/WpfAppgroup/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{
+ "version": 2,
+ "dgSpecHash": "uPwHS5TPnFQ=",
+ "success": true,
+ "projectFilePath": "C:\\Users\\bib\\Desktop\\wpf App\\WpfAPP\\WpfAppgroup\\WpfAppgroup.csproj",
+ "expectedPackageFiles": [],
+ "logs": []
+}
\ No newline at end of file
diff --git a/gitignore.txt b/gitignore.txt
new file mode 100644
index 0000000..b5d7fe6
--- /dev/null
+++ b/gitignore.txt
@@ -0,0 +1,289 @@
+## Ignore Visual Studio temporary files, build results, and
+## files generated by popular Visual Studio add-ons.
+##
+## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
+
+# User-specific files
+*.suo
+*.user
+*.userosscache
+*.sln.docstates
+
+# User-specific files (MonoDevelop/Xamarin Studio)
+*.userprefs
+
+# Build results
+[Dd]ebug/
+[Dd]ebugPublic/
+[Rr]elease/
+x64/
+x86/
+bld/
+[Bb]in/
+[Oo]bj/
+[Ll]og/
+
+# Visual Studio 2015 cache/options directory
+.vs/
+# Uncomment if you have tasks that create the project's static files in wwwroot
+#wwwroot/
+
+# MSTest test Results
+[Tt]est[Rr]esult*/
+[Bb]uild[Ll]og.*
+
+# NUNIT
+*.VisualState.xml
+TestResult.xml
+
+# Build Results of an ATL Project
+[Dd]ebugPS/
+[Rr]eleasePS/
+dlldata.c
+
+# .NET Core
+project.lock.json
+project.fragment.lock.json
+artifacts/
+**/Properties/launchSettings.json
+
+# VS Code
+.vscode/
+
+*_i.c
+*_p.c
+*_i.h
+*.ilk
+*.meta
+*.obj
+*.pch
+*.pdb
+*.pgc
+*.pgd
+*.rsp
+*.sbr
+*.tlb
+*.tli
+*.tlh
+*.tmp
+*.tmp_proj
+*.log
+*.vspscc
+*.vssscc
+.builds
+*.pidb
+*.svclog
+*.scc
+
+# Chutzpah Test files
+_Chutzpah*
+
+# Visual C++ cache files
+ipch/
+*.aps
+*.ncb
+*.opendb
+*.opensdf
+*.sdf
+*.cachefile
+*.VC.db
+*.VC.VC.opendb
+
+# Visual Studio profiler
+*.psess
+*.vsp
+*.vspx
+*.sap
+
+# TFS 2012 Local Workspace
+$tf/
+
+# Guidance Automation Toolkit
+*.gpState
+
+# ReSharper is a .NET coding add-in
+_ReSharper*/
+*.[Rr]e[Ss]harper
+*.DotSettings.user
+
+# JustCode is a .NET coding add-in
+.JustCode
+
+# TeamCity is a build add-in
+_TeamCity*
+
+# DotCover is a Code Coverage Tool
+*.dotCover
+
+# Visual Studio code coverage results
+*.coverage
+*.coveragexml
+
+# NCrunch
+_NCrunch_*
+.*crunch*.local.xml
+nCrunchTemp_*
+
+# MightyMoose
+*.mm.*
+AutoTest.Net/
+
+# Web workbench (sass)
+.sass-cache/
+
+# Installshield output folder
+[Ee]xpress/
+
+# DocProject is a documentation generator add-in
+DocProject/buildhelp/
+DocProject/Help/*.HxT
+DocProject/Help/*.HxC
+DocProject/Help/*.hhc
+DocProject/Help/*.hhk
+DocProject/Help/*.hhp
+DocProject/Help/Html2
+DocProject/Help/html
+
+# Click-Once directory
+publish/
+
+# Publish Web Output
+*.[Pp]ublish.xml
+*.azurePubxml
+# TODO: Comment the next line if you want to checkin your web deploy settings
+# but database connection strings (with potential passwords) will be unencrypted
+*.pubxml
+*.publishproj
+
+# Microsoft Azure Web App publish settings. Comment the next line if you want to
+# checkin your Azure Web App publish settings, but sensitive information contained
+# in these scripts will be unencrypted
+PublishScripts/
+
+# NuGet Packages
+*.nupkg
+# The packages folder can be ignored because of Package Restore
+**/packages/*
+# except build/, which is used as an MSBuild target.
+!**/packages/build/
+# Uncomment if necessary however generally it will be regenerated when needed
+#!**/packages/repositories.config
+# NuGet v3's project.json files produces more ignorable files
+*.nuget.props
+*.nuget.targets
+
+# Microsoft Azure Build Output
+csx/
+*.build.csdef
+
+# Microsoft Azure Emulator
+ecf/
+rcf/
+
+# Windows Store app package directories and files
+AppPackages/
+BundleArtifacts/
+Package.StoreAssociation.xml
+_pkginfo.txt
+
+# Visual Studio cache files
+# files ending in .cache can be ignored
+*.[Cc]ache
+# but keep track of directories ending in .cache
+!*.[Cc]ache/
+
+# Others
+ClientBin/
+~$*
+*~
+*.dbmdl
+*.dbproj.schemaview
+*.jfm
+*.pfx
+*.publishsettings
+orleans.codegen.cs
+
+# Since there are multiple workflows, uncomment next line to ignore bower_components
+# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
+#bower_components/
+
+# RIA/Silverlight projects
+Generated_Code/
+
+# Backup & report files from converting an old project file
+# to a newer Visual Studio version. Backup files are not needed,
+# because we have git ;-)
+_UpgradeReport_Files/
+Backup*/
+UpgradeLog*.XML
+UpgradeLog*.htm
+
+# SQL Server files
+*.mdf
+*.ldf
+
+# Business Intelligence projects
+*.rdl.data
+*.bim.layout
+*.bim_*.settings
+
+# Microsoft Fakes
+FakesAssemblies/
+
+# GhostDoc plugin setting file
+*.GhostDoc.xml
+
+# Node.js Tools for Visual Studio
+.ntvs_analysis.dat
+node_modules/
+
+# Typescript v1 declaration files
+typings/
+
+# Visual Studio 6 build log
+*.plg
+
+# Visual Studio 6 workspace options file
+*.opt
+
+# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
+*.vbw
+
+# Visual Studio LightSwitch build output
+**/*.HTMLClient/GeneratedArtifacts
+**/*.DesktopClient/GeneratedArtifacts
+**/*.DesktopClient/ModelManifest.xml
+**/*.Server/GeneratedArtifacts
+**/*.Server/ModelManifest.xml
+_Pvt_Extensions
+
+# Paket dependency manager
+.paket/paket.exe
+paket-files/
+
+# FAKE - F# Make
+.fake/
+
+# JetBrains Rider
+.idea/
+*.sln.iml
+
+# CodeRush
+.cr/
+
+# Python Tools for Visual Studio (PTVS)
+__pycache__/
+*.pyc
+
+# Cake - Uncomment if you are using it
+# tools/**
+# !tools/packages.config
+
+# Telerik's JustMock configuration file
+*.jmconfig
+
+# BizTalk build output
+*.btp.cs
+*.btm.cs
+*.odx.cs
+*.xsd.cs