1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
<Grid x:Name="LayoutRoot" Background="White" >
<Grid.RowDefinitions>
<RowDefinition Height="50" />
</Grid.RowDefinitions>
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal" Grid.Row="0">
<Canvas x:Name="step_1" Width="150" Height="50" Canvas.Left="0" Canvas.Top="0">
<Path x:Name="Path_Step_1" Width="150" Height="50" Canvas.Left="0" Canvas.Top="0" Stretch="Fill" StrokeThickness="0" StrokeLineJoin="Round" Stroke="#FF230FD2" Fill="#FFB2B4A8" Data="F1 M 129,65L 0.999997,65L 0.999997,0.999985L 129,0.999985L 145,33L 129,65 Z "/>
<sdk:Label Canvas.Left="0" Canvas.Top="10" Height="29" Name="label_Step_1" Width="135" Content="Step 1" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontStretch="SemiCondensed" FontWeight="ExtraBold" FontStyle="Italic" FontFamily="Verdana" Foreground="White" FontSize="20" />
</Canvas>
<Canvas x:Name="step_2" Width="150" Height="50" Canvas.Left="0" Canvas.Top="0" >
<Path x:Name="Path_Step_2" Width="150" Height="50" Canvas.Left="-15" Canvas.Top="0" Stretch="Fill" StrokeThickness="0" StrokeLineJoin="Round" Stroke="#FF230FD2" Fill="#FFB2B4A8" Data="F1 M 1.52588e-005,0.999996L 128,0.999996L 144,33L 128,65L 1.52588e-005,65L 16,33L -1.52588e-005,1.00002"/>
<sdk:Label Canvas.Left="2" Canvas.Top="10" Height="29" Name="label_Step_2" Width="120" Content="Step 2" HorizontalContentAlignment="Center" FontStretch="SemiCondensed" FontWeight="ExtraBold" FontStyle="Italic" FontFamily="Verdana" Foreground="White" FontSize="20" />
</Canvas>
<Canvas x:Name="step_3" Width="150" Height="50" Canvas.Left="0" Canvas.Top="0">
<Path x:Name="Path_Step_3" Width="150" Height="50" Canvas.Left="-30" Canvas.Top="0" Stretch="Fill" StrokeThickness="0" StrokeLineJoin="Round" Stroke="#FF230FD2" Fill="#FFB2B4A8" Data="F1 M 1.52588e-005,0.999996L 128,0.999996L 144,33L 128,65L 1.52588e-005,65L 16,33L -1.52588e-005,1.00002"/>
<sdk:Label Canvas.Left="-13" Canvas.Top="10" Height="29" Name="label_Step_3" Width="120" Content="Step 3" HorizontalContentAlignment="Center" FontStretch="SemiCondensed" FontWeight="ExtraBold" FontStyle="Italic" FontFamily="Verdana" Foreground="White" FontSize="20" />
</Canvas>
<Canvas x:Name="step_4" Width="150" Height="50" Canvas.Left="0" Canvas.Top="0">
<Path x:Name="Path_Step_4" Width="150" Height="50" Canvas.Left="-45" Canvas.Top="0" Stretch="Fill" StrokeThickness="0" StrokeLineJoin="Round" Stroke="#FF230FD2" Fill="Magenta" Data="F1 M 1.52588e-005,0.999996L 128,0.999996L 144,33L 128,65L 1.52588e-005,65L 16,33L -1.52588e-005,1.00002"/>
<sdk:Label Canvas.Left="-29" Canvas.Top="10" Height="29" Name="label_Step_4" Width="120" Content="Step 4" HorizontalContentAlignment="Center" FontStretch="SemiCondensed" FontWeight="ExtraBold" FontStyle="Italic" FontFamily="Verdana" Foreground="White" FontSize="20" />
</Canvas>
</StackPanel>
</Grid> |
Partager