20 lines
950 B
XML
20 lines
950 B
XML
<UserControl x:Class="BeWo.View.Controls.AssessmentSheetValueControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Grid>
|
|
|
|
<Border x:Name="border" IsHitTestVisible="True" Background="White" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" BorderThickness="1" BorderBrush="#7F000000" CornerRadius="4">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
<Border x:Name="shine" IsHitTestVisible="False" VerticalAlignment="Stretch" Visibility="Hidden" HorizontalAlignment="Stretch" BorderThickness="0" BorderBrush="Black" CornerRadius="4,4,0,0" Margin="0" Background="#66FFFFFF" />
|
|
|
|
<TextBlock Name="tb" Grid.RowSpan="2" FontSize="15" Margin="0" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
</Grid>
|
|
</Border>
|
|
|
|
|
|
</Grid>
|
|
</UserControl> |