-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathMainPage.xaml
79 lines (66 loc) · 2.7 KB
/
MainPage.xaml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<Page
x:Class="Input.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Input"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="200" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Border
Grid.Column="0"
BorderBrush="Black"
BorderThickness="0,0,1,0">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="50" />
</Grid.RowDefinitions>
<TextBlock Text="Result Log:" />
<TextBlock
Grid.Row="1"
Name="ResultText"
Text=""
TextWrapping="WrapWholeWords"
VerticalAlignment="Stretch"
HorizontalAlignment="Stretch" />
<Button
Grid.Row="2"
Name="Clear"
Content="Clear"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Tapped="Clear_OnTapped" />
</Grid>
</Border>
<Grid
Name="ManipulationContainer"
Grid.Column="1">
<Button
Name="Touchable"
Content="Touchable Button"
Width="300"
Height="300"
HorizontalAlignment="Center"
VerticalAlignment="Center"
IsHoldingEnabled="True"
Tapped="Touchable_OnTapped"
DoubleTapped="Touchable_OnDoubleTapped"
RightTapped="Touchable_OnRightTapped"
Holding="Touchable_OnHolding"
ManipulationMode="TranslateX, TranslateY, Scale, Rotate"
ManipulationStarted="Touchable_OnManipulationStarted"
ManipulationDelta="Touchable_OnManipulationDelta"
ManipulationCompleted="Touchable_OnManipulationCompleted">
<Button.RenderTransform>
<CompositeTransform x:Name="TouchableTransform" CenterX="150" CenterY="150"/>
</Button.RenderTransform>
</Button>
</Grid>
</Grid>
</Page>