35
|
1 |
<UserControl
|
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
6 |
mc:Ignorable="d"
|
|
7 |
xmlns:FingersDance_Control_Pivot="clr-namespace:FingersDance.Control.Pivot;assembly=FingersDance.Control.Pivot"
|
|
8 |
xmlns:FingersDance_Control_UserPanel="clr-namespace:FingersDance.Control.UserPanel;assembly=FingersDance.Control.UserPanel"
|
|
9 |
x:Class="FingersDance.Control.Screen.UserControlScreen"
|
|
10 |
x:Name="UserControl"
|
|
11 |
d:DesignWidth="640" d:DesignHeight="480" Width="1024" Height="768" xmlns:Custom="http://schemas.microsoft.com/surface/2008">
|
|
12 |
|
|
13 |
<Grid x:Name="LayoutRoot">
|
|
14 |
<Custom:ScatterView HorizontalAlignment="Left" VerticalAlignment="Top" Foreground="{x:Null}" ContactChanged="ScatterViewPivot_ContactChanged" x:Name="ScatterViewPivot">
|
|
15 |
<Custom:ScatterViewItem x:Name="ScatterViewItemPivot" ContactChanged="ScatterViewItemPivot_ContactChanged">
|
|
16 |
<FingersDance_Control_Pivot:UserControlPivot Height="52" x:Name="UserControlPivot" Width="52" Foreground="{x:Null}" />
|
|
17 |
</Custom:ScatterViewItem>
|
|
18 |
</Custom:ScatterView>
|
|
19 |
|
|
20 |
<Grid HorizontalAlignment="Left" x:Name="Grid1" VerticalAlignment="Top" Width="100" Height="100">
|
|
21 |
<Rectangle x:Name="Rectangle1" Fill="{x:Null}" Stroke="#FF000000"/>
|
|
22 |
|
|
23 |
<!--<FingersDance_Control_UserPanel:UserControlUserPanel x:Name="UserPanel1"/>-->
|
|
24 |
</Grid>
|
|
25 |
<Grid HorizontalAlignment="Right" Margin="0,0,8,0" x:Name="Grid2" VerticalAlignment="Top" Width="100" Height="100">
|
|
26 |
<Rectangle x:Name="Rectangle2" Fill="{x:Null}" Stroke="#FF000000"/>
|
|
27 |
<!--<FingersDance_Control_UserPanel:UserControlUserPanel x:Name="UserPanel2"/>-->
|
|
28 |
</Grid>
|
|
29 |
<Grid HorizontalAlignment="Left" x:Name="Grid3" VerticalAlignment="Bottom" Width="100" Height="100">
|
|
30 |
<Rectangle x:Name="Rectangle3" Fill="{x:Null}" Stroke="#FF000000"/>
|
|
31 |
<!--<FingersDance_Control_UserPanel:UserControlUserPanel x:Name="UserPanel3"/>-->
|
|
32 |
</Grid>
|
|
33 |
<Grid HorizontalAlignment="Right" x:Name="Grid4" VerticalAlignment="Bottom" Width="100" Height="100">
|
|
34 |
<Rectangle x:Name="Rectangle4" Fill="{x:Null}" Stroke="#FF000000"/>
|
|
35 |
<!--<FingersDance_Control_UserPanel:UserControlUserPanel x:Name="UserPanel4"/>-->
|
|
36 |
</Grid>
|
|
37 |
|
|
38 |
</Grid>
|
|
39 |
|
|
40 |
</UserControl> |