2019-05-27 11:23:14 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<ContentView
|
|
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2019-07-05 14:17:09 -04:00
|
|
|
xmlns:hs="clr-namespace:Aurora.Design.Components.HostSelector"
|
|
|
|
xmlns:ml="clr-namespace:Aurora.Design.Components.MemberList"
|
|
|
|
xmlns:qu="clr-namespace:Aurora.Design.Components.Queue"
|
|
|
|
x:Class="Aurora.Design.Views.Party.PartyView">
|
2019-05-27 11:23:14 -05:00
|
|
|
<ContentView.Content>
|
2019-06-25 21:17:52 -04:00
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
2019-07-05 14:17:09 -04:00
|
|
|
<RowDefinition
|
|
|
|
Height="*"/>
|
2019-06-25 21:17:52 -04:00
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<StackLayout
|
|
|
|
Grid.Row="0"
|
|
|
|
IsVisible="{Binding IsNotSelectingHost}">
|
2019-05-31 10:12:03 -04:00
|
|
|
<Label
|
|
|
|
Text="Party Members"/>
|
2019-05-27 11:23:14 -05:00
|
|
|
<ml:MemberList
|
2019-06-25 21:17:52 -04:00
|
|
|
VerticalOptions="FillAndExpand"
|
2019-05-27 11:23:14 -05:00
|
|
|
Members="{Binding Members}"/>
|
2019-05-31 10:12:03 -04:00
|
|
|
<Label
|
2019-07-05 14:17:09 -04:00
|
|
|
Text="Queue"/>
|
2019-05-31 10:12:03 -04:00
|
|
|
<qu:Queue/>
|
2019-05-27 11:23:14 -05:00
|
|
|
</StackLayout>
|
|
|
|
<hs:HostSelector
|
2019-06-25 21:17:52 -04:00
|
|
|
Grid.Row="0"
|
|
|
|
Hostname="{Binding Hostname}"
|
|
|
|
Port="{Binding Port}"
|
|
|
|
HostCommand="{Binding HostCommand}"
|
|
|
|
JoinCommand="{Binding JoinCommand}"
|
|
|
|
IsVisible="{Binding IsSelectingHost}"/>
|
|
|
|
</Grid>
|
2019-05-27 11:23:14 -05:00
|
|
|
</ContentView.Content>
|
|
|
|
</ContentView>
|