-
-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathMainView.ux
More file actions
26 lines (24 loc) · 766 Bytes
/
MainView.ux
File metadata and controls
26 lines (24 loc) · 766 Bytes
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
<App>
<Container ux:Class="Item" Subtree="innerPanel" Margin="10">
<StackLayout/>
<string ux:Property="Title"/>
<Rectangle ux:Binding="Children" Layer="Background"
StrokeColor="#646" StrokeWidth="1" CornerRadius="5" Color="#FFF"/>
<Rectangle ux:Binding="Children" CornerRadius="5,5,0,0" Color="#646" Padding="2">
<Text Alignment="Center" Value="{Property this.Title}" Color="#FFF" FontSize="18"/>
</Rectangle>
<Panel ux:Name="innerPanel" Margin="10" ux:Binding="Children"/>
</Container>
<ClientPanel Color="#AAA">
<ScrollView>
<StackPanel>
<ItemJaggedLine/>
<ItemDecoratedCurve/>
<ItemTangentLine/>
<ItemEllipticalProgress/>
<ItemPathLogo/>
<ItemPathJS/>
</StackPanel>
</ScrollView>
</ClientPanel>
</App>