forked from fuse-open/fuse-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChat.ux
More file actions
23 lines (21 loc) · 810 Bytes
/
Chat.ux
File metadata and controls
23 lines (21 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<DockPanel ux:Template="chat" Color="#FFF">
<JavaScript File="chat.js"/>
<TitleBar Dock="Top">
<Button Alignment="Left" Text="Back" Clicked="{leave}"/>
<Panel Alignment="Right" Clicked="{viewProfile}">
<Text Value="Profile" FontSize="12"/>
<Circle Color="#AFF"/>
</Panel>
<Label Alignment="Center" Value="{contact.name}"/>
</TitleBar>
<StackPanel Alignment="Bottom">
<Label Alignment="Center" Value="Chatting"/>
<Rectangle Height="5" Color="{contact.color}"/>
<Label Alignment="Left" Value="{contact.name}"/>
<Label Alignment="Right" Value="blah blah blah"/>
</StackPanel>
<Grid Dock="Bottom" Columns="1*,auto" Padding="4" Color="#AAA">
<TextInput/>
<Image File="Assets/play.png" Color="0.98,0.99,1,1" StretchMode="PointPrecise"/>
</Grid>
</DockPanel>