6
2025-11-07 12:32:48 +03:00

27 lines
1.3 KiB
XML

<controls:FancyWindow xmlns="https://spacestation14.io"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
SetSize="800 800"
MinSize="800 150"> <!-- Frontier: min size Y - 128<150 -->
<BoxContainer Orientation="Vertical" VerticalExpand="True">
<!-- Frontier: loadout cost details -->
<Label Name="Cost"/>
<Label Name="Balance"/>
<!-- End Frontier -->
<BoxContainer Name="RoleNameBox" Orientation="Vertical" Margin="5 0 5 0"> <!-- Frontier: margin - 10<5-->
<Label Name="LoadoutNameLabel"/>
<PanelContainer HorizontalExpand="True" SetHeight="24">
<PanelContainer.PanelOverride>
<graphics:StyleBoxFlat BackgroundColor="#1B1B1E" />
</PanelContainer.PanelOverride>
<LineEdit Name="RoleNameEdit" VerticalExpand="True" HorizontalExpand="True"/>
</PanelContainer>
</BoxContainer>
<VerticalTabContainer Name="LoadoutGroupsContainer"
VerticalExpand="True"
HorizontalExpand="True">
</VerticalTabContainer>
</BoxContainer>
</controls:FancyWindow>