41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<Page
|
|
x:Class="_04_BasicChat.Views.ChatPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="0.1*" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="0.75*" />
|
|
<RowDefinition Height="0.15*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<StackPanel Grid.Row="0">
|
|
<TextBlock x:Name="ChatHeaderText" Text="Your conversation with : " Style="{ThemeResource HeaderTextBlockStyle}" />
|
|
</StackPanel>
|
|
|
|
<Grid Grid.Row="1" Padding="10,0,10,0">
|
|
<TextBlock x:Name="PeerUsername" Text="Peer user-name : " />
|
|
<TextBlock x:Name="YourUsername" Text="Your user-name : " HorizontalAlignment="Right" />
|
|
</Grid>
|
|
|
|
<ScrollViewer Grid.Row="2" x:Name="MessagesScroll">
|
|
<StackPanel Padding="10"
|
|
x:Name="MessagesList"
|
|
Orientation="Vertical"
|
|
VerticalAlignment="Bottom">
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
|
|
<Grid Grid.Row="3">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="0.80*" />
|
|
<ColumnDefinition Width="0.20*" />
|
|
</Grid.ColumnDefinitions>
|
|
<TextBox Grid.Column="0" x:Name="OutgoingMessageText" Text="" AcceptsReturn="True" TextWrapping="Wrap" />
|
|
<Button Grid.Column="1" x:Name="OutgoingMessageButton" Click="OutgoingMessageButton_Click" Content="Send" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" />
|
|
</Grid>
|
|
</Grid>
|
|
</Page> |