2021-09-19 19:34:46 +02:00
|
|
|
<Control xmlns="https://spacestation14.io"
|
|
|
|
|
xmlns:pllax="clr-namespace:Content.Client.Parallax"
|
|
|
|
|
xmlns:clog="clr-namespace:Content.Client.Changelog">
|
|
|
|
|
<pllax:ParallaxControl />
|
2024-02-17 05:55:42 +11:00
|
|
|
<BoxContainer Name="VBox"
|
|
|
|
|
Orientation="Vertical"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
HorizontalExpand="True"
|
|
|
|
|
VerticalExpand="True"
|
|
|
|
|
StyleIdentifier="mainMenuVBox"
|
|
|
|
|
SeparationOverride="3">
|
|
|
|
|
<TextureRect Name="Logo"
|
|
|
|
|
Stretch="KeepCentered"/>
|
|
|
|
|
<GridContainer Columns="2">
|
|
|
|
|
<Label Text="{Loc 'main-menu-username-label'}" />
|
|
|
|
|
<LineEdit Name="UsernameBox"
|
|
|
|
|
Access="Public"
|
|
|
|
|
PlaceHolder="{Loc 'main-menu-username-text'}"
|
|
|
|
|
HorizontalExpand="True" />
|
|
|
|
|
<Label Text="{Loc 'main-menu-address-label'}"/>
|
2021-10-28 14:23:17 +02:00
|
|
|
<LineEdit Name="AddressBox"
|
|
|
|
|
Access="Public"
|
2021-09-19 19:34:46 +02:00
|
|
|
Text="localhost"
|
|
|
|
|
PlaceHolder="server address:port"
|
|
|
|
|
HorizontalExpand="True" />
|
2024-02-17 05:55:42 +11:00
|
|
|
</GridContainer>
|
|
|
|
|
<Button Name="DirectConnectButton"
|
|
|
|
|
Access="Public"
|
|
|
|
|
Text="{Loc 'main-menu-direct-connect-button'}"
|
|
|
|
|
TextAlign="Center"
|
|
|
|
|
StyleIdentifier="mainMenu"/>
|
|
|
|
|
<Button Name="OptionsButton"
|
|
|
|
|
Access="Public"
|
|
|
|
|
Text="{Loc 'main-menu-options-button'}"
|
|
|
|
|
TextAlign="Center"
|
|
|
|
|
StyleIdentifier="mainMenu"/>
|
|
|
|
|
<Button Name="QuitButton"
|
|
|
|
|
Access="Public"
|
|
|
|
|
Text="{Loc 'main-menu-quit-button'}"
|
|
|
|
|
TextAlign="Center"
|
|
|
|
|
StyleIdentifier="mainMenu"/>
|
|
|
|
|
<clog:ChangelogButton
|
|
|
|
|
Name="ChangelogButton"
|
|
|
|
|
Access="Public"/>
|
|
|
|
|
</BoxContainer>
|
2021-09-19 19:34:46 +02:00
|
|
|
</Control>
|