summaryrefslogtreecommitdiff
path: root/App.axaml
diff options
context:
space:
mode:
authoruvok2026-05-16 19:40:09 +0200
committeruvok2026-05-16 19:40:09 +0200
commit064dbb3f410b2b95fede248be7b57179e762db0b (patch)
treecdd318ee138051537366f49a604d27dc21920ebf /App.axaml
Initial commit
Diffstat (limited to 'App.axaml')
-rw-r--r--App.axaml22
1 files changed, 22 insertions, 0 deletions
diff --git a/App.axaml b/App.axaml
new file mode 100644
index 0000000..44be8c1
--- /dev/null
+++ b/App.axaml
@@ -0,0 +1,22 @@
+<Application xmlns="https://github.com/avaloniaui"
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+ x:Class="east_auctioner.App"
+ xmlns:local="using:east_auctioner"
+ xmlns:views="using:east_auctioner.Views"
+ xmlns:models="using:east_auctioner.Models"
+ RequestedThemeVariant="Default">
+ <!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
+
+ <Application.DataTemplates>
+ <local:ViewLocator/>
+ <DataTemplate DataType="models:BidItem">
+ <views:BidItemEditor />
+ </DataTemplate>
+
+ </Application.DataTemplates>
+
+
+ <Application.Styles>
+ <FluentTheme />
+ </Application.Styles>
+</Application> \ No newline at end of file