Files
OldThink/Content.Client/MainMenu/UI/MainMenuControl.xaml
rhailrake 483ab4eb2c - add: new tiles and another ui tweaks (#11)
* - fix: audio crash

* - tweak: main menu

* connect gui

* some shaders here

* tiles
2024-01-31 15:08:17 +00:00

39 lines
1.4 KiB
XML

<Control xmlns="https://spacestation14.io"
xmlns:clog="clr-namespace:Content.Client.Changelog">
<TextureRect Access="Public" TexturePath="/Textures/Ohio/ohfuck.png" VerticalExpand="True" HorizontalExpand="True" Name="Background" Stretch="KeepAspectCovered"/>
<LayoutContainer>
<BoxContainer Name="VBox" Orientation="Vertical" StyleIdentifier="MainMenuBox" MinWidth="300" >
<Label Name="Title" Text="GREEN MIRACLE" Align="Center" />
<Control MinSize="0 4" />
<BoxContainer Orientation="Horizontal" SeparationOverride="4">
<LineEdit Name="UsernameBox" Access="Public" PlaceHolder="{Loc 'main-menu-username-text'}" HorizontalExpand="True" />
</BoxContainer>
<Control MinSize="0 2" />
<LineEdit Name="AddressBox" Access="Public" Text="localhost" PlaceHolder="server address:port" HorizontalExpand="True" />
<Control MinSize="0 2" />
<Button Name="DirectConnectButton" Access="Public" Text="{Loc 'main-menu-direct-connect-button'}" TextAlign="Center" />
<Button Name="OptionsButton" Access="Public" Text="{Loc 'main-menu-options-button'}" TextAlign="Center" />
<clog:ChangelogButton Name="ChangelogButton" Access="Public" />
<Button Name="QuitButton" Access="Public" Text="{Loc 'main-menu-quit-button'}" TextAlign="Center" />
</BoxContainer>
</LayoutContainer>
</Control>