2024-04-01 01:07:13 +01:00
|
|
|
<controls:ItemStatusPanel
|
2022-10-12 01:16:23 -07:00
|
|
|
xmlns="https://spacestation14.io"
|
|
|
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Systems.Inventory.Controls"
|
|
|
|
|
xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
|
|
|
|
|
VerticalAlignment="Bottom"
|
2024-04-21 15:16:23 +02:00
|
|
|
HorizontalAlignment="Center">
|
2024-04-24 16:01:31 +02:00
|
|
|
<PanelContainer Name="Panel">
|
|
|
|
|
<PanelContainer.PanelOverride>
|
|
|
|
|
<graphics:StyleBoxTexture
|
|
|
|
|
PatchMarginBottom="4"
|
|
|
|
|
PatchMarginTop="6"
|
|
|
|
|
TextureScale="2 2"
|
|
|
|
|
Mode="Tile"/>
|
|
|
|
|
</PanelContainer.PanelOverride>
|
|
|
|
|
</PanelContainer>
|
|
|
|
|
<PanelContainer Name="HighlightPanel">
|
|
|
|
|
<PanelContainer.PanelOverride>
|
|
|
|
|
<graphics:StyleBoxTexture PatchMarginBottom="4" PatchMarginTop="6" TextureScale="2 2">
|
|
|
|
|
</graphics:StyleBoxTexture>
|
|
|
|
|
</PanelContainer.PanelOverride>
|
|
|
|
|
</PanelContainer>
|
|
|
|
|
<BoxContainer Name="Contents" Orientation="Vertical" Margin="0 6 0 4" RectClipContent="True">
|
|
|
|
|
<BoxContainer Name="StatusContents" Orientation="Vertical" VerticalExpand="True" VerticalAlignment="Bottom" />
|
|
|
|
|
<Control>
|
|
|
|
|
<Label Name="NoItemLabel" ClipText="True" StyleClasses="ItemStatusNotHeld" Align="Left" Text="{Loc 'item-status-not-held'}" />
|
|
|
|
|
<Label Name="ItemNameLabel" ClipText="True" StyleClasses="ItemStatus" Align="Left" Visible="False" />
|
|
|
|
|
</Control>
|
|
|
|
|
</BoxContainer>
|
2022-10-12 01:16:23 -07:00
|
|
|
</controls:ItemStatusPanel>
|