src/FingersDance.Control.SessionInput/UserControlSessionInput.xaml
author sarias
Sun, 20 Sep 2009 18:02:37 +0200
changeset 77 e95e916eb018
parent 73 bda95242e600
child 106 9dfc0ee0ab17
permissions -rw-r--r--
Travail sur le Pivot et le control Session Input
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
61
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
     1
<UserControl
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
     2
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
     3
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
     4
	xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
     5
	xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
     6
	mc:Ignorable="d"
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
     7
	x:Class="FingersDance.Control.SessionInput.UserControlSessionInput"
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
     8
	x:Name="UserControl"
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
     9
	Background="#FFA09E9E" Width="256" Height="192" xmlns:Custom="http://schemas.microsoft.com/surface/2008">
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    10
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    11
	<Grid x:Name="LayoutRoot">
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    12
		<Custom:SurfaceTextBox d:LayoutOverrides="HorizontalAlignment" Margin="112,12.818,8,0" x:Name="ST_Name" VerticalAlignment="Top" Text="" TextWrapping="Wrap"/>
77
e95e916eb018 Travail sur le Pivot et le control Session Input
sarias
parents: 73
diff changeset
    13
		<Label HorizontalAlignment="Left" VerticalAlignment="Top" Content="Name:" Margin="14.367,4.818,0,0" x:Name="LName"/>
e95e916eb018 Travail sur le Pivot et le control Session Input
sarias
parents: 73
diff changeset
    14
		<Custom:SurfaceTextBox d:LayoutOverrides="HorizontalAlignment, VerticalAlignment" Margin="112,36.626,8,0" x:Name="ST_Date" VerticalAlignment="Top" Text="" TextWrapping="Wrap"/>
e95e916eb018 Travail sur le Pivot et le control Session Input
sarias
parents: 73
diff changeset
    15
		<Label HorizontalAlignment="Left" VerticalAlignment="Top" Content="Date:" Margin="14.367,28.626,0,0" x:Name="LDate"/>
e95e916eb018 Travail sur le Pivot et le control Session Input
sarias
parents: 73
diff changeset
    16
		<Custom:SurfaceTextBox d:LayoutOverrides="HorizontalAlignment, VerticalAlignment, Height" Margin="112,62.586,8,0" x:Name="ST_Alias" VerticalAlignment="Top" Text="" TextWrapping="Wrap"/>
e95e916eb018 Travail sur le Pivot et le control Session Input
sarias
parents: 73
diff changeset
    17
		<Label HorizontalAlignment="Left" VerticalAlignment="Top" Content="Alias:" Margin="14.367,54.586,0,0" x:Name="LAlias"/>
e95e916eb018 Travail sur le Pivot et le control Session Input
sarias
parents: 73
diff changeset
    18
		<Custom:SurfaceTextBox d:LayoutOverrides="HorizontalAlignment, VerticalAlignment" Margin="112,87.677,8,0" x:Name="ST_Email" VerticalAlignment="Top" Text="" TextWrapping="Wrap"/>
e95e916eb018 Travail sur le Pivot et le control Session Input
sarias
parents: 73
diff changeset
    19
		<Label HorizontalAlignment="Left" Content="Email:" d:LayoutOverrides="Height" Margin="14.367,80.546,0,85.494" x:Name="LEmail"/>
e95e916eb018 Travail sur le Pivot et le control Session Input
sarias
parents: 73
diff changeset
    20
		<Custom:SurfaceTextBox d:LayoutOverrides="HorizontalAlignment, Height" Margin="112,0,8,64.403" x:Name="ST_Desc" VerticalAlignment="Bottom" Text="" TextWrapping="Wrap"/>
e95e916eb018 Travail sur le Pivot et le control Session Input
sarias
parents: 73
diff changeset
    21
		<Label HorizontalAlignment="Left" VerticalAlignment="Bottom" Content="Description:" Margin="14.367,0,0,64.403" Width="74.321" d:LayoutOverrides="Height"/>
e95e916eb018 Travail sur le Pivot et le control Session Input
sarias
parents: 73
diff changeset
    22
		<Custom:SurfaceButton RenderTransformOrigin="0.5,0.5" Margin="112,0,94,8" VerticalAlignment="Bottom" Content="" Height="50" x:Name="SurfaceButtonSubmit" ContactDown="SurfaceButtonSubmit_ContactDown" Click="SurfaceButtonSubmit_Click">
61
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    23
			<Custom:SurfaceButton.RenderTransform>
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    24
				<TransformGroup>
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    25
					<ScaleTransform ScaleX="1" ScaleY="1"/>
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    26
					<SkewTransform AngleX="0" AngleY="0"/>
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    27
					<RotateTransform Angle="0"/>
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    28
					<TranslateTransform X="0" Y="0"/>
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    29
				</TransformGroup>
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    30
			</Custom:SurfaceButton.RenderTransform>
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    31
		</Custom:SurfaceButton>
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    32
	</Grid>
9e2f007b19b3 Projet InputSession
sarias
parents:
diff changeset
    33
</UserControl>