Display AddModal

This commit is contained in:
Natlinux81
2022-08-13 23:07:43 +02:00
parent 2de986f5b8
commit 311cd83b70
10 changed files with 172 additions and 81 deletions

View File

@@ -0,0 +1,18 @@
<UserControl x:Class="Apollon.WPF.Views.EditTournamentView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Apollon.WPF.Views"
xmlns:components="clr-namespace:Apollon.WPF.Views.Components"
mc:Ignorable="d">
<Grid>
<TextBlock Text="Turniers Bearbeiten"
TextAlignment="Center"
FontFamily="Arial"
FontWeight="Bold"
FontSize="25"
Foreground="#0000a0"/>
<components:AddEditDetails Margin="0 50 0 0"/>
</Grid>
</UserControl>