mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-14 19:29:57 +01:00
* Added random gate * minor edit * cleaning up my shit after trying to do something faster * new lines * some changes * joke * UI * Long Division * Dont use ctrl + x in 3 am * I hope these are the final touches * One thing, I don't know why * noname commit * no way, 1kk of code lines edit * sudo rm -rf ... and something there... * update * sometimes its sad
20 lines
997 B
XML
20 lines
997 B
XML
<controls:FancyWindow xmlns="https://spacestation14.io"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
|
Title="{Loc 'random-gate-menu-setup'}"
|
|
MinSize="260 115">
|
|
<BoxContainer Orientation="Vertical" Margin="5" SeparationOverride="10">
|
|
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
|
|
<Label Text="{Loc 'random-gate-menu-settings'}" VerticalAlignment="Center" />
|
|
<Control HorizontalExpand="True" />
|
|
<LineEdit Name="ProbabilityInput" MinSize="70 0" />
|
|
</BoxContainer>
|
|
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
|
|
<Control HorizontalExpand="True" />
|
|
<Button Name="ApplyButton"
|
|
Text="{Loc 'random-gate-menu-apply'}"
|
|
HorizontalAlignment="Right" />
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</controls:FancyWindow>
|