src/FingersDance.Control/UserControlCustomLabel.xaml
author cavaliet
Mon, 16 Nov 2009 18:06:15 +0100
changeset 202 e15e7110ef6d
parent 154 d43cbdd14d67
permissions -rw-r--r--
player modification for gesture part to be fully displayed.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
154
d43cbdd14d67 custom label
sarias
parents:
diff changeset
     1
<UserControl
d43cbdd14d67 custom label
sarias
parents:
diff changeset
     2
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
d43cbdd14d67 custom label
sarias
parents:
diff changeset
     3
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
d43cbdd14d67 custom label
sarias
parents:
diff changeset
     4
	xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
d43cbdd14d67 custom label
sarias
parents:
diff changeset
     5
	xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
d43cbdd14d67 custom label
sarias
parents:
diff changeset
     6
	mc:Ignorable="d"
d43cbdd14d67 custom label
sarias
parents:
diff changeset
     7
	x:Class="FingersDance.Control.UserControlCustomLabel"
d43cbdd14d67 custom label
sarias
parents:
diff changeset
     8
	x:Name="UserControl">
d43cbdd14d67 custom label
sarias
parents:
diff changeset
     9
	<UserControl.Background>
d43cbdd14d67 custom label
sarias
parents:
diff changeset
    10
		<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
d43cbdd14d67 custom label
sarias
parents:
diff changeset
    11
			<GradientStop Color="#FFE7E5E5" Offset="0"/>
d43cbdd14d67 custom label
sarias
parents:
diff changeset
    12
			<GradientStop Color="#FFFFFFFF" Offset="1"/>
d43cbdd14d67 custom label
sarias
parents:
diff changeset
    13
		</LinearGradientBrush>
d43cbdd14d67 custom label
sarias
parents:
diff changeset
    14
	</UserControl.Background>
d43cbdd14d67 custom label
sarias
parents:
diff changeset
    15
d43cbdd14d67 custom label
sarias
parents:
diff changeset
    16
	<Grid x:Name="LayoutRoot">
d43cbdd14d67 custom label
sarias
parents:
diff changeset
    17
		<Label Content="Label" HorizontalAlignment="Center" VerticalAlignment="Center" FontWeight="Normal" FontSize="16" x:Name="label"/>
d43cbdd14d67 custom label
sarias
parents:
diff changeset
    18
	</Grid>
d43cbdd14d67 custom label
sarias
parents:
diff changeset
    19
</UserControl>