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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
06de3a61998f Ajout des projets: Menu , UserPanel et TimeLine
sarias
parents:
diff changeset
     1
<UserControl
06de3a61998f Ajout des projets: Menu , UserPanel et TimeLine
sarias
parents:
diff changeset
     2
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
06de3a61998f Ajout des projets: Menu , UserPanel et TimeLine
sarias
parents:
diff changeset
     3
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
06de3a61998f Ajout des projets: Menu , UserPanel et TimeLine
sarias
parents:
diff changeset
     4
	xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
06de3a61998f Ajout des projets: Menu , UserPanel et TimeLine
sarias
parents:
diff changeset
     5
	xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
06de3a61998f Ajout des projets: Menu , UserPanel et TimeLine
sarias
parents:
diff changeset
     6
	mc:Ignorable="d"
06de3a61998f Ajout des projets: Menu , UserPanel et TimeLine
sarias
parents:
diff changeset
     7
	x:Class="FingersDance.Control.Menu.UserControlMenu"
06de3a61998f Ajout des projets: Menu , UserPanel et TimeLine
sarias
parents:
diff changeset
     8
	x:Name="UserControl"
06de3a61998f Ajout des projets: Menu , UserPanel et TimeLine
sarias
parents:
diff changeset
     9
	Width="245" Height="Auto" xmlns:Custom="http://schemas.microsoft.com/surface/2008">
06de3a61998f Ajout des projets: Menu , UserPanel et TimeLine
sarias
parents:
diff changeset
    10
54
c724ac229181 Singleton de la factory
PAMPHILE Jonathan <pamphile@efrei.fr>
parents: 3
diff changeset
    11
    <StackPanel x:Name="LayoutRoot" Width="Auto" Height="Auto">
c724ac229181 Singleton de la factory
PAMPHILE Jonathan <pamphile@efrei.fr>
parents: 3
diff changeset
    12
        <StackPanel.Background>
c724ac229181 Singleton de la factory
PAMPHILE Jonathan <pamphile@efrei.fr>
parents: 3
diff changeset
    13
            <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
c724ac229181 Singleton de la factory
PAMPHILE Jonathan <pamphile@efrei.fr>
parents: 3
diff changeset
    14
                <GradientStop Color="#FF000000" Offset="0"/>
c724ac229181 Singleton de la factory
PAMPHILE Jonathan <pamphile@efrei.fr>
parents: 3
diff changeset
    15
                <GradientStop Color="#FF444444" Offset="0.991"/>
c724ac229181 Singleton de la factory
PAMPHILE Jonathan <pamphile@efrei.fr>
parents: 3
diff changeset
    16
                <GradientStop Color="#FF757575" Offset="0.906"/>
c724ac229181 Singleton de la factory
PAMPHILE Jonathan <pamphile@efrei.fr>
parents: 3
diff changeset
    17
                <GradientStop Color="#FF414141" Offset="0.772"/>
c724ac229181 Singleton de la factory
PAMPHILE Jonathan <pamphile@efrei.fr>
parents: 3
diff changeset
    18
            </LinearGradientBrush>
c724ac229181 Singleton de la factory
PAMPHILE Jonathan <pamphile@efrei.fr>
parents: 3
diff changeset
    19
        </StackPanel.Background>
c724ac229181 Singleton de la factory
PAMPHILE Jonathan <pamphile@efrei.fr>
parents: 3
diff changeset
    20
    </StackPanel>
2
06de3a61998f Ajout des projets: Menu , UserPanel et TimeLine
sarias
parents:
diff changeset
    21
</UserControl>