From d560346365cb6ee20d0475065139817e3d69fd85 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Thu, 3 Jul 2025 11:06:54 +0200 Subject: [PATCH] [chore:] added initial ResultWindow --- ResultWindow.axaml | 9 +++++++++ ResultWindow.axaml.cs | 13 +++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 ResultWindow.axaml create mode 100644 ResultWindow.axaml.cs diff --git a/ResultWindow.axaml b/ResultWindow.axaml new file mode 100644 index 0000000..fff9103 --- /dev/null +++ b/ResultWindow.axaml @@ -0,0 +1,9 @@ + + Welcome to Avalonia! + diff --git a/ResultWindow.axaml.cs b/ResultWindow.axaml.cs new file mode 100644 index 0000000..8737a0a --- /dev/null +++ b/ResultWindow.axaml.cs @@ -0,0 +1,13 @@ +using Avalonia; +using Avalonia.Controls; +using Avalonia.Markup.Xaml; + +namespace Logof_Client; + +public partial class ResultWindow : Window +{ + public ResultWindow() + { + InitializeComponent(); + } +} \ No newline at end of file