Initial commit

This commit is contained in:
Natlinux81
2022-08-09 15:05:35 +02:00
commit 14d6e027f9
18 changed files with 885 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<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="Tuniername"
TextAlignment="Center"
FontFamily="Arial"
FontWeight="Bold"
FontSize="14"
Foreground="#0000a0"
Margin="40"/>
<TextBlock Text="Vom 01.01.2022 bis 03.01.2022"
TextAlignment="Center"
FontFamily="Arial"
FontWeight="Bold"
FontSize="14"
Foreground="#0000a0"
Margin="0,0,0,40"/>
<TextBlock Text="Veranstaltungsort"
TextAlignment="Center"
FontFamily="Arial"
FontWeight="Bold"
FontSize="14"
Foreground="#0000a0"
Margin="0,0,0,40"/>
</StackPanel>
</Grid>
</UserControl>