summaryrefslogtreecommitdiff
path: root/Views/BidItemEditor.axaml
diff options
context:
space:
mode:
authoruvok2026-05-16 19:40:09 +0200
committeruvok2026-05-16 19:40:09 +0200
commit064dbb3f410b2b95fede248be7b57179e762db0b (patch)
treecdd318ee138051537366f49a604d27dc21920ebf /Views/BidItemEditor.axaml
Initial commit
Diffstat (limited to 'Views/BidItemEditor.axaml')
-rw-r--r--Views/BidItemEditor.axaml21
1 files changed, 21 insertions, 0 deletions
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 @@
+<UserControl xmlns="https://github.com/avaloniaui"
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+ xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
+ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+ xmlns:models="using:east_auctioner.Models"
+ mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
+ x:Class="east_auctioner.Views.BidItemEditor"
+ x:DataType="models:BidItem"
+ >
+ <Grid Margin="10,50,10,50">
+ <Grid.ColumnDefinitions>
+ <ColumnDefinition Width="*"></ColumnDefinition>
+ <ColumnDefinition Width="*"></ColumnDefinition>
+ </Grid.ColumnDefinitions>
+ <Grid.RowDefinitions>
+ <RowDefinition Height="Auto"></RowDefinition>
+ </Grid.RowDefinitions>
+ <TextBlock>Name of Item:</TextBlock>
+ <TextBox Text="{Binding Title}" Grid.Column="1" />
+ </Grid>
+</UserControl>