forked from robsinspirechange/MyILPWindowsPhone8.1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestPage.xaml
21 lines (20 loc) · 1001 Bytes
/
TestPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MyILP.Pages"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:rateControl="using:MyILP.Design"
xmlns:MyILP="using:MyILP"
x:Class="MyILP.Pages.TestPage"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid Background="#FFDE1D1D">
<Button Click="btnGet_Click" x:Name="btnGet" Content="Show Hide" Margin="150,204,0,379" />
<MyILP:FeedbackControl x:Name="feedControl" HorizontalAlignment="Center" VerticalAlignment="Bottom" RenderTransformOrigin="0.5,0.5">
<MyILP:FeedbackControl.RenderTransform>
<CompositeTransform TranslateY="360"/>
</MyILP:FeedbackControl.RenderTransform>
</MyILP:FeedbackControl>
</Grid>
</Page>