Files
BCSH1-TournamentApp/TournamentOrganizer/Views/MainWindow.axaml
T
shield 16160f6424 feat: initial datamodel + ef connection and migrations
Initial version of the data model
Includes EF initialization and migrations
EF migrations are applied on application start
2026-04-09 10:36:09 +02:00

13 lines
615 B
XML

<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="using:TournamentOrganizer.ViewModels"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:views="using:TournamentOrganizer.Views"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="TournamentOrganizer.Views.MainWindow"
Icon="/Assets/avalonia-logo.ico"
Title="TournamentOrganizer">
<views:MainView />
</Window>