Files
Apollon/Apollon.WPF/Views/AddTournamentView.xaml
2022-08-13 02:23:19 +02:00

20 lines
965 B
XML

<UserControl x:Class="Apollon.WPF.Views.AddTournamentView"
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"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<TextBlock Text="Erstellen eines Tourniers"
TextAlignment="Center"
FontFamily="Arial"
FontWeight="Bold"
FontSize="25"
Foreground="#0000a0"
Margin="10"/>
<components:AddEditDetails Margin="20 40"/>
</Grid>
</UserControl>