123456789101112131415161718192021222324252627 |
- <UserControl x:Class="HistoryDLL.LiveContainer"
- 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:HistoryDLL"
- mc:Ignorable="d" >
- <Grid x:Name="uxLiveContainerMainGrid">
- <Grid.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="BorderBrush" Value="Transparent" />
- <Setter Property="BorderThickness" Value="5" />
- <Setter Property="CornerRadius" Value="5" />
- </Style>
- </Grid.Resources>
- <Grid.RowDefinitions>
- <RowDefinition Height="6*"></RowDefinition>
- <RowDefinition Height="1*"></RowDefinition>
- </Grid.RowDefinitions>
- <Border Grid.Row="0" x:Name="uxUpSide"></Border>
- <Border Grid.Row="1" x:Name="uxDownSide" Height="77" >
- <TextBlock x:Name="uxYearStr" TextTrimming="CharacterEllipsis" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="40" ></TextBlock>
- </Border>
- </Grid>
- </UserControl>
|