From 7bed45aecf5b57e6aeb55d82dd09c470ba1fbed7 Mon Sep 17 00:00:00 2001 From: Michael Babienco Date: Mon, 16 Feb 2026 14:29:32 +0900 Subject: [PATCH] Add Edit page --- App.axaml | 9 ++++++--- Views/EditFile.axaml | 20 ++++++++++++++++++++ Views/EditFile.axaml.cs | 15 +++++++++++++++ 3 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 Views/EditFile.axaml create mode 100644 Views/EditFile.axaml.cs diff --git a/App.axaml b/App.axaml index 8e29f9f..c800ae1 100644 --- a/App.axaml +++ b/App.axaml @@ -73,14 +73,14 @@ @@ -91,6 +91,9 @@ + + + diff --git a/Views/EditFile.axaml b/Views/EditFile.axaml new file mode 100644 index 0000000..337db0f --- /dev/null +++ b/Views/EditFile.axaml @@ -0,0 +1,20 @@ + + + + diff --git a/Views/EditFile.axaml.cs b/Views/EditFile.axaml.cs new file mode 100644 index 0000000..2dd6c20 --- /dev/null +++ b/Views/EditFile.axaml.cs @@ -0,0 +1,15 @@ +using System; +using Avalonia; +using Avalonia.Controls; +using Avalonia.Markup.Xaml; + +namespace ReceiptPDFBuilder.Views +{ + public partial class EditFile : UserControl + { + public EditFile() + { + this.InitializeComponent(); + } + } +}