From 064dbb3f410b2b95fede248be7b57179e762db0b Mon Sep 17 00:00:00 2001 From: uvok Date: Sat, 16 May 2026 19:40:09 +0200 Subject: Initial commit --- Views/BidItemEditor.axaml | 21 +++++++++++++++++++++ Views/BidItemEditor.axaml.cs | 14 ++++++++++++++ Views/MainWindow.axaml | 45 ++++++++++++++++++++++++++++++++++++++++++++ Views/MainWindow.axaml.cs | 11 +++++++++++ 4 files changed, 91 insertions(+) create mode 100644 Views/BidItemEditor.axaml create mode 100644 Views/BidItemEditor.axaml.cs create mode 100644 Views/MainWindow.axaml create mode 100644 Views/MainWindow.axaml.cs (limited to 'Views') diff --git a/Views/BidItemEditor.axaml b/Views/BidItemEditor.axaml new file mode 100644 index 0000000..340c602 --- /dev/null +++ b/Views/BidItemEditor.axaml @@ -0,0 +1,21 @@ + + + + + + + + + + Name of Item: + + + diff --git a/Views/BidItemEditor.axaml.cs b/Views/BidItemEditor.axaml.cs new file mode 100644 index 0000000..37bf04e --- /dev/null +++ b/Views/BidItemEditor.axaml.cs @@ -0,0 +1,14 @@ +using Avalonia; +using Avalonia.Controls; +using Avalonia.Markup.Xaml; +using east_auctioner.Models; + +namespace east_auctioner.Views; + +public partial class BidItemEditor : UserControl +{ + public BidItemEditor() + { + InitializeComponent(); + } +} diff --git a/Views/MainWindow.axaml b/Views/MainWindow.axaml new file mode 100644 index 0000000..ec1472b --- /dev/null +++ b/Views/MainWindow.axaml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + Name: + + + + + + + + + + diff --git a/Views/MainWindow.axaml.cs b/Views/MainWindow.axaml.cs new file mode 100644 index 0000000..12b598c --- /dev/null +++ b/Views/MainWindow.axaml.cs @@ -0,0 +1,11 @@ +using Avalonia.Controls; + +namespace east_auctioner.Views; + +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file -- cgit v1.2.3