DatePicker implemented
This commit is contained in:
@@ -51,7 +51,7 @@
|
||||
VerticalContentAlignment="Center"/>
|
||||
<TextBox Grid.Row="1"
|
||||
Grid.Column="1"
|
||||
Text="{Binding Tournamentname, UpdateSourceTrigger=PropertyChanged}"
|
||||
Text="{Binding TournamentName, UpdateSourceTrigger=PropertyChanged}"
|
||||
FontFamily="Arial"
|
||||
FontSize="16"
|
||||
Height="30"
|
||||
@@ -65,18 +65,20 @@
|
||||
VerticalContentAlignment="Center"
|
||||
HorizontalAlignment="Left"/>
|
||||
|
||||
<DatePicker Grid.Row="3"
|
||||
<DatePicker SelectedDateFormat="Long"
|
||||
Grid.Row="3"
|
||||
SelectedDate="{Binding StartDate}"
|
||||
Grid.Column="1"
|
||||
Height="30"
|
||||
FontSize="16"
|
||||
Width="160"
|
||||
FontSize="16"
|
||||
HorizontalAlignment="Left"/>
|
||||
|
||||
<DatePicker Grid.Row="4"
|
||||
<DatePicker SelectedDateFormat="Long"
|
||||
Grid.Row="4"
|
||||
SelectedDate="{Binding EndDate}"
|
||||
Grid.Column="1"
|
||||
Height="30"
|
||||
FontSize="16"
|
||||
Width="160"
|
||||
FontSize="16"
|
||||
HorizontalAlignment="Left"/>
|
||||
|
||||
<TextBox Grid.Row="5"
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
<ColumnDefinition Width="auto"></ColumnDefinition>
|
||||
</Grid.ColumnDefinitions>
|
||||
<WrapPanel Grid.Column="0">
|
||||
<TextBlock Text="{Binding Tournamentname}"
|
||||
<TextBlock Text="{Binding TournamentName}"
|
||||
Margin="0 0 4 0"/>
|
||||
<TextBlock Text="{Binding Location}"/>
|
||||
</WrapPanel>
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
</TextBlock>
|
||||
|
||||
<StackPanel>
|
||||
<TextBlock Text="{Binding Tournamentname}"
|
||||
<TextBlock Text="{Binding TournamentName}"
|
||||
TextAlignment="Center"
|
||||
FontFamily="Arial"
|
||||
FontWeight="Bold"
|
||||
@@ -109,26 +109,8 @@
|
||||
</Image>
|
||||
</WrapPanel>
|
||||
|
||||
<WrapPanel Margin="10" HorizontalAlignment="Center">
|
||||
<TextBlock Text="vom "
|
||||
TextAlignment="Center"
|
||||
FontFamily="Arial"
|
||||
FontWeight="Bold"
|
||||
FontSize="14"
|
||||
Foreground="#0000a0">
|
||||
<TextBlock.Style>
|
||||
<Style TargetType="TextBlock">
|
||||
<Setter Property="Visibility" Value="Hidden"/>
|
||||
<Style.Triggers>
|
||||
<DataTrigger Binding="{Binding HasSelectedTournament}" Value="True">
|
||||
<Setter Property="Visibility" Value="Visible"/>
|
||||
</DataTrigger>
|
||||
</Style.Triggers>
|
||||
</Style>
|
||||
</TextBlock.Style>
|
||||
</TextBlock>
|
||||
|
||||
<TextBlock Text="{Binding Startdate}"
|
||||
<WrapPanel Margin="10" HorizontalAlignment="Center">
|
||||
<TextBlock Text="{Binding StartDate}"
|
||||
TextAlignment="Center"
|
||||
FontFamily="Arial"
|
||||
FontWeight="Bold"
|
||||
@@ -163,7 +145,7 @@
|
||||
</Style>
|
||||
</TextBlock.Style>
|
||||
</TextBlock>
|
||||
<TextBlock Text="{Binding Enddate}"
|
||||
<TextBlock Text="{Binding EndDate}"
|
||||
TextAlignment="Center"
|
||||
FontFamily="Arial"
|
||||
FontWeight="Bold"
|
||||
|
||||
Reference in New Issue
Block a user