19 lines
885 B
XML
19 lines
885 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">
|
|
<Grid>
|
|
<TextBlock Text="Turniers erstellen"
|
|
TextAlignment="Center"
|
|
FontFamily="Arial"
|
|
FontWeight="Bold"
|
|
FontSize="25"
|
|
Foreground="#0000a0"/>
|
|
<components:AddEditDetails Margin="0 50 0 0"/>
|
|
</Grid>
|
|
</UserControl>
|