* clean up a bunch of R&D code * don't store components * brug * speedrun some sloth review * technology disks * expand functionality, begin work on printer * disk printer ui * file * fix the rebase * disk console is finito * Update DiskConsoleSystem.cs
37 lines
1.7 KiB
XML
37 lines
1.7 KiB
XML
<controls:FancyWindow xmlns="https://spacestation14.io"
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
|
xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
|
|
Title="{Loc 'tech-disk-ui-name'}"
|
|
MinSize="400 260"
|
|
SetSize="400 260">
|
|
<BoxContainer Orientation="Vertical"
|
|
HorizontalExpand="True"
|
|
VerticalExpand="True"
|
|
Margin="10 10 10 10">
|
|
<Button Name="ServerButton"
|
|
Text="{Loc 'lathe-menu-server-list'}"
|
|
HorizontalAlignment="Left"></Button>
|
|
<PanelContainer Margin="0 10 0 0" VerticalExpand="True">
|
|
<PanelContainer.PanelOverride>
|
|
<graphics:StyleBoxFlat BackgroundColor="#000000FF"/>
|
|
</PanelContainer.PanelOverride>
|
|
<BoxContainer Orientation="Vertical" VerticalExpand="True" HorizontalExpand="True" VerticalAlignment="Center">
|
|
<Label Name="TotalLabel"
|
|
HorizontalAlignment="Center">
|
|
</Label>
|
|
<Label Name="CostLabel"
|
|
HorizontalAlignment="Center">
|
|
</Label>
|
|
<BoxContainer MinHeight="20"></BoxContainer>
|
|
<Button
|
|
Name="PrintButton"
|
|
Text="{Loc 'tech-disk-ui-print-button'}"
|
|
MaxWidth="120"
|
|
HorizontalAlignment="Center"
|
|
VerticalExpand="False">
|
|
</Button>
|
|
</BoxContainer>
|
|
</PanelContainer>
|
|
</BoxContainer>
|
|
</controls:FancyWindow>
|