-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenuPage.ux
More file actions
58 lines (41 loc) · 1.98 KB
/
MenuPage.ux
File metadata and controls
58 lines (41 loc) · 1.98 KB
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
<Page ux:Class="MenuPage">
<Router ux:Dependency="depRouter" />
<JavaScript File="MenuPage.js" />
<Activated>
<Callback Handler="{checkIsSmokingActive}" />
</Activated>
<DockPanel Dock="Top" Color="#EFEFF4">
<CommonNavBar router="depRouter" Dock="Top" PrevTitle="Tilbake" />
<ScrollView>
<StackPanel Color="#fff">
<Rectangle Height="1" Color="#ddd" />
<MenuItem Tapped="{gotoSettings}">
<MenuText Value="Innstillinger" />
</MenuItem>
<Rectangle Height="1" Color="#ddd" />
<MenuItem Tapped="{gotoPushNotifications}">
<MenuText Value="Arkiv pushmeldinger" />
</MenuItem>
<Rectangle Height="1" Color="#ddd" />
<WhileTrue Value="{isSmokingActive}">
<MenuItem>
<MenuText Value="Avhengighetstest" />
<Clicked>
<Callback Handler="{gotoAvhengighetstest}" />
<LaunchUri Uri="https://www.sigarettavhengighet.no/" />
</Clicked>
</MenuItem>
<Rectangle Height="1" Color="#ddd" />
<MenuItem>
<MenuText Value="Røykesluttgevinster" />
<Clicked>
<Callback Handler="{gotoRoykesluttgevinster}" />
<LaunchUri Uri="http://www.roykesluttgevinster.no/" />
</Clicked>
</MenuItem>
<Rectangle Height="1" Color="#ddd" />
</WhileTrue>
</StackPanel>
</ScrollView>
</DockPanel>
</Page>