154
|
1 |
<UserControl
|
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
6 |
mc:Ignorable="d"
|
|
7 |
x:Class="FingersDance.Control.UserControlCustomLabel"
|
|
8 |
x:Name="UserControl">
|
|
9 |
<UserControl.Background>
|
|
10 |
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
11 |
<GradientStop Color="#FFE7E5E5" Offset="0"/>
|
|
12 |
<GradientStop Color="#FFFFFFFF" Offset="1"/>
|
|
13 |
</LinearGradientBrush>
|
|
14 |
</UserControl.Background>
|
|
15 |
|
|
16 |
<Grid x:Name="LayoutRoot">
|
|
17 |
<Label Content="Label" HorizontalAlignment="Center" VerticalAlignment="Center" FontWeight="Normal" FontSize="16" x:Name="label"/>
|
|
18 |
</Grid>
|
|
19 |
</UserControl> |