From d02d5199c3461f9416bfa639a0fff1b9d11f10a3 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Thu, 9 Oct 2025 11:22:17 +0200 Subject: [PATCH] [file:] added new window for splash screen --- StartupWindow.axaml | 18 ++++++++++++++++++ StartupWindow.axaml.cs | 13 +++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 StartupWindow.axaml create mode 100644 StartupWindow.axaml.cs diff --git a/StartupWindow.axaml b/StartupWindow.axaml new file mode 100644 index 0000000..7e62b31 --- /dev/null +++ b/StartupWindow.axaml @@ -0,0 +1,18 @@ + + + + + + + + + + \ No newline at end of file diff --git a/StartupWindow.axaml.cs b/StartupWindow.axaml.cs new file mode 100644 index 0000000..fb26fba --- /dev/null +++ b/StartupWindow.axaml.cs @@ -0,0 +1,13 @@ +using Avalonia.Controls; + +namespace Logof_Client; + +public partial class StartupWindow : Window +{ + public StartupWindow() + { + InitializeComponent(); + } + + +} \ No newline at end of file