InventoryGui.xaml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <widgets:InventoryGui
  2. xmlns="https://spacestation14.io"
  3. xmlns:inventory="clr-namespace:Content.Client.UserInterface.Systems.Inventory.Controls"
  4. xmlns:widgets="clr-namespace:Content.Client.UserInterface.Systems.Inventory.Widgets"
  5. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  6. Name="InventoryInterface"
  7. VerticalExpand="True"
  8. VerticalAlignment="Bottom"
  9. Orientation="Horizontal"
  10. HorizontalAlignment="Center">
  11. <Control HorizontalAlignment="Center">
  12. <!-- Needs to default to invisible because if we attach to a non-slots entity this will never get unset -->
  13. <controls:SlotButton
  14. Name="InventoryButton"
  15. Access="Public"
  16. Visible="False"
  17. VerticalAlignment="Bottom"
  18. HorizontalExpand="False"
  19. VerticalExpand="False"
  20. ButtonTexturePath="Slots/toggle"/>
  21. <inventory:ItemSlotButtonContainer
  22. Name="InventoryHotbar"
  23. Access="Public"
  24. Visible="False"
  25. MaxColumns="3"
  26. SlotGroup="Default"
  27. ExpandBackwards="True"
  28. VerticalExpand="True"
  29. HorizontalAlignment="Center"
  30. />
  31. </Control>
  32. </widgets:InventoryGui>