Files
tbd-station-14/Content.Client/Materials/UI/MaterialDisplay.xaml
Nemanja 2b01899d63 Make the material ejection control completely generic (#23308)
* Finish decoupling material ejection from lathes

* commented
2023-12-31 23:16:25 -08:00

25 lines
935 B
XML

<PanelContainer xmlns="https://spacestation14.io"
HorizontalExpand="True">
<BoxContainer Orientation="Horizontal">
<TextureRect Name="Icon"
Access="Public"
MinSize="32 32"
RectClipContent="True" />
<BoxContainer Orientation="Vertical"
HorizontalExpand="True"
VerticalExpand="False">
<Label Name="ProductName"
Access="Public"
HorizontalExpand="True"
ClipText="True"
Margin="4 4 4 4"/>
</BoxContainer>
<BoxContainer Name="Content"
Orientation="Horizontal"
HorizontalExpand="True"
HorizontalAlignment="Right">
<!--Here go buttons which added in c#-->
</BoxContainer>
</BoxContainer>
</PanelContainer>