From 52e89e347fae09ca8092c666b5d9c22f7cf35768 Mon Sep 17 00:00:00 2001 From: Michael Babienco Date: Mon, 16 Feb 2026 13:07:00 +0900 Subject: [PATCH] Add about window --- Views/AboutWindow.axaml | 16 ++++++++++++++++ Views/AboutWindow.axaml.cs | 13 +++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 Views/AboutWindow.axaml create mode 100644 Views/AboutWindow.axaml.cs diff --git a/Views/AboutWindow.axaml b/Views/AboutWindow.axaml new file mode 100644 index 0000000..73c2126 --- /dev/null +++ b/Views/AboutWindow.axaml @@ -0,0 +1,16 @@ + + + diff --git a/Views/AboutWindow.axaml.cs b/Views/AboutWindow.axaml.cs new file mode 100644 index 0000000..18d98c7 --- /dev/null +++ b/Views/AboutWindow.axaml.cs @@ -0,0 +1,13 @@ +using Avalonia; +using Avalonia.Controls; +using Avalonia.Markup.Xaml; + +namespace ReceiptPDFBuilder; + +public partial class AboutWindow : Window +{ + public AboutWindow() + { + InitializeComponent(); + } +} \ No newline at end of file