mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-14 19:29:57 +01:00
* Add new name and description fields to the thiefbackpack component and ui * Change fields to locids, remove Title from menu.xaml, add comments to thiefbackpackui.cs
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<controls:FancyWindow xmlns="https://spacestation14.io"
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
|
xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
|
|
MinSize="700 700">
|
|
<BoxContainer Orientation="Vertical" HorizontalExpand="True" VerticalExpand="True">
|
|
<!-- First Informational panel -->
|
|
<Label Name="Description" Margin="5 5"/>
|
|
<controls:HLine Color="#404040" Thickness="2" Margin="0 5"/>
|
|
<Label Name="SelectedSets" Text="{Loc 'thief-backpack-window-selected'}" Margin="5 5"/>
|
|
|
|
<!-- Second sets panel -->
|
|
<PanelContainer Margin="5 5">
|
|
<PanelContainer.PanelOverride>
|
|
<gfx:StyleBoxFlat BackgroundColor="#050505" />
|
|
</PanelContainer.PanelOverride>
|
|
<ScrollContainer
|
|
HScrollEnabled="False"
|
|
MinSize="0 600"
|
|
SizeFlagsStretchRatio="2"
|
|
VerticalExpand="True">
|
|
<BoxContainer Name="SetsGrid" Orientation="Vertical" MinSize="460 200">
|
|
<!-- Sets is filled by code -->
|
|
|
|
</BoxContainer>
|
|
</ScrollContainer>
|
|
</PanelContainer>
|
|
<!-- Third approve button panel -->
|
|
<PanelContainer Margin="10">
|
|
<Button Name="ApproveButton"
|
|
Text="{Loc 'thief-backpack-window-approve-button'}"
|
|
Margin="0 5"
|
|
Access="Public"
|
|
HorizontalAlignment ="Right"
|
|
StyleClasses="OpenRight"/>
|
|
</PanelContainer>
|
|
</BoxContainer>
|
|
</controls:FancyWindow>
|