src/FingersDance.Control.Menu/UserControlMenu.xaml
author PAMPHILE Jonathan <pamphile@efrei.fr>
Tue, 15 Sep 2009 21:19:51 +0200
changeset 62 cbe5b01679a3
parent 54 c724ac229181
child 63 99813224e948
permissions -rw-r--r--
Création du CustomSurfaceButton

<UserControl
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
	xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
	mc:Ignorable="d"
	x:Class="FingersDance.Control.Menu.UserControlMenu"
	x:Name="UserControl"
	Width="245" Height="Auto" xmlns:Custom="http://schemas.microsoft.com/surface/2008">

    <StackPanel x:Name="LayoutRoot" Width="Auto" Height="Auto">
        <StackPanel.Background>
            <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
                <GradientStop Color="#FF000000" Offset="0"/>
                <GradientStop Color="#FF444444" Offset="0.991"/>
                <GradientStop Color="#FF757575" Offset="0.906"/>
                <GradientStop Color="#FF414141" Offset="0.772"/>
            </LinearGradientBrush>
        </StackPanel.Background>
    </StackPanel>
</UserControl>