Co-authored-by: Tayrtahn <tayrtahn@gmail.com> Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com>
23 lines
1.1 KiB
XML
23 lines
1.1 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 128">
|
|
<BoxContainer Orientation="Vertical" VerticalExpand="True">
|
|
<BoxContainer Name="RoleNameBox" Orientation="Vertical" Margin="10">
|
|
<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>
|