74 lines
3.0 KiB
XML
74 lines
3.0 KiB
XML
<UserControl x:Class="Apollon.WPF.Views.Components.ApollonOverviewDetails"
|
|
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.Components"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Grid>
|
|
<Border BorderBrush="#0000a0"
|
|
BorderThickness="1"
|
|
CornerRadius="10">
|
|
</Border>
|
|
<StackPanel>
|
|
<TextBlock Text="{Binding Tournamentname}"
|
|
TextAlignment="Center"
|
|
FontFamily="Arial"
|
|
FontWeight="Bold"
|
|
FontSize="14"
|
|
Foreground="#0000a0"
|
|
Margin="10"/>
|
|
<TextBlock Text="{Binding Organisation}"
|
|
TextAlignment="Center"
|
|
FontFamily="Arial"
|
|
FontWeight="Bold"
|
|
FontSize="14"
|
|
Foreground="#0000a0"
|
|
Margin="10"/>
|
|
<TextBlock Text="{Binding Category}"
|
|
TextAlignment="Center"
|
|
FontFamily="Arial"
|
|
FontWeight="Bold"
|
|
FontSize="14"
|
|
Foreground="#0000a0"
|
|
Margin="10"/>
|
|
<WrapPanel Margin="10" HorizontalAlignment="Center">
|
|
<TextBlock Text="vom "
|
|
TextAlignment="Center"
|
|
FontFamily="Arial"
|
|
FontWeight="Bold"
|
|
FontSize="14"
|
|
Foreground="#0000a0"/>
|
|
<TextBlock Text="{Binding Startdate}"
|
|
TextAlignment="Center"
|
|
FontFamily="Arial"
|
|
FontWeight="Bold"
|
|
FontSize="14"
|
|
Foreground="#0000a0"
|
|
Margin="0 0 5 0"/>
|
|
<TextBlock Text="bis "
|
|
TextAlignment="Center"
|
|
FontFamily="Arial"
|
|
FontWeight="Bold"
|
|
FontSize="14"
|
|
Foreground="#0000a0"/>
|
|
<TextBlock Text="{Binding Enddate}"
|
|
TextAlignment="Center"
|
|
FontFamily="Arial"
|
|
FontWeight="Bold"
|
|
FontSize="14"
|
|
Foreground="#0000a0"/>
|
|
</WrapPanel>
|
|
|
|
<TextBlock Text="{Binding Location}"
|
|
TextAlignment="Center"
|
|
FontFamily="Arial"
|
|
FontWeight="Bold"
|
|
FontSize="14"
|
|
Foreground="#0000a0"
|
|
Margin="10"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl>
|