-
-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathMainView.ux
41 lines (36 loc) · 1.07 KB
/
MainView.ux
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
<App>
<ClientPanel>
<DockPanel Dock="Top" Color="0.8,1,1,1" ux:Name="TitleBar" Padding="5">
<Text FontSize="32" Alignment="Center">App Title</Text>
</DockPanel>
<DockPanel Dock="Bottom" Color="0.8,0.8,0.8,1" ux:Name="StatusBar" Padding="5">
<Text>Status Bar</Text>
</DockPanel>
<PageControl>
<Page Color="0.95,1,0.9,1">
<StackPanel Alignment="Center">
<Text Alignment="Center">Page One</Text>
<Text>Swipe to navigate</Text>
</StackPanel>
<WhileActive>
<AlternateRoot ParentNode="TitleBar">
<Button Dock="Right" Text="Share"/>
</AlternateRoot>
</WhileActive>
</Page>
<Page Color="0.95,0.9,1,1">
<StackPanel Alignment="Center">
<Text Alignment="Center">Page Two</Text>
<Text>Toggle status indicator</Text>
<Switch>
<WhileTrue>
<AlternateRoot ParentNode="StatusBar">
<Circle Color="1,0,0,1" Dock="Right" BoxSizing="FillAspect" Aspect="1"/>
</AlternateRoot>
</WhileTrue>
</Switch>
</StackPanel>
</Page>
</PageControl>
</ClientPanel>
</App>