-
Notifications
You must be signed in to change notification settings - Fork 1
/
MainView.ux
25 lines (21 loc) · 876 Bytes
/
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
<App Model="MainView" Background="#fefefe">
<StatusBarBackground Background="#f53b50" Alignment="Top"/>
<Rectangle Layer="Background" ux:Name="bg" Alignment="Left" Width="33%" Color="MainColor">
<WhileTrue Value="{pageIndex} == 1">
<Change bg.Width="67%" Duration=".3" Easing="QuadraticInOut"/>
</WhileTrue>
<WhileTrue Value="{pageIndex} == 2">
<Change bg.Width="100%" Duration=".3" Easing="QuadraticInOut"/>
</WhileTrue>
</Rectangle>
<ClientPanel>
<TopBar />
<PageControl ActiveIndex="{pageIndex}" Interaction="None" InactiveState="Collapsed" CachingMode="Never">
<Deferred>
<CategoriesView />
<CategoryDetailsView />
<ShoppingCartView />
</Deferred>
</PageControl>
</ClientPanel>
</App>