38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ContentView
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Aurora.Design.Views.Party.NewPartyDialog.NewPartyDialog">
|
|
<ContentView.Resources>
|
|
<StyleSheet
|
|
Source="NewPartyDialog.css"/>
|
|
</ContentView.Resources>
|
|
<ContentView.Content>
|
|
<StackLayout
|
|
x:Name="Container"
|
|
BackgroundColor="blue"
|
|
HorizontalOptions="Center"
|
|
VerticalOptions="Start">
|
|
<Label
|
|
Text="Hostname"
|
|
VerticalOptions="Center"/>
|
|
<Entry
|
|
Text="{Binding Hostname}"
|
|
x:Name="HostnameEntry"/>
|
|
<StackLayout
|
|
Orientation="Horizontal"
|
|
HorizontalOptions="Center">
|
|
<Button
|
|
HorizontalOptions="Center"
|
|
x:Name="buttonHost"
|
|
Text="Host"
|
|
Command="{Binding HostCommand}"/>
|
|
<Button
|
|
HorizontalOptions="Center"
|
|
x:Name="buttonClient"
|
|
Text="Join"
|
|
Command="{Binding JoinCommand}"/>
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</ContentView.Content>
|
|
</ContentView> |