-
-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathMainView.ux
More file actions
20 lines (18 loc) · 661 Bytes
/
MainView.ux
File metadata and controls
20 lines (18 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<App>
<Text ux:Class="Label" FontSize="24" Color="#002" TextWrapping="Wrap" TextAlignment="Center" />
<DockPanel ux:Class="PizzaButton" Padding="15" Margin="15">
<string ux:Property="Text" />
<Rectangle Layer="Background" CornerRadius="5" Color="#EFE">
<Stroke Width="2" Color="#222" />
</Rectangle>
<Rectangle Layer="Background" CornerRadius="5" Color="#0008" Offset="5,5" />
<Label Value="{ReadProperty Text}" />
<Image Alignment="VerticalCenter" Dock="Right" File="Assets/arrowright.png" Color="#510" />
</DockPanel>
<PageControl Color="#AAA">
<TitlePage />
<PizzaPage />
<ToppingsPage />
<PaymentPage />
</PageControl>
</App>