HotbarGui.xaml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <widgets:HotbarGui
  2. xmlns="https://spacestation14.io"
  3. xmlns:inventory="clr-namespace:Content.Client.UserInterface.Systems.Inventory.Controls"
  4. xmlns:hands="clr-namespace:Content.Client.UserInterface.Systems.Hands.Controls"
  5. xmlns:widgets="clr-namespace:Content.Client.UserInterface.Systems.Hotbar.Widgets"
  6. Name="HotbarInterface"
  7. VerticalExpand="True"
  8. VerticalAlignment="Bottom"
  9. Orientation="Vertical"
  10. HorizontalAlignment="Center">
  11. <BoxContainer Orientation="Vertical">
  12. <BoxContainer Name="StorageContainer"
  13. Access="Public"
  14. HorizontalAlignment="Center"
  15. HorizontalExpand="True"
  16. Margin="10">
  17. </BoxContainer>
  18. <BoxContainer Orientation="Horizontal" Name="Hotbar" HorizontalAlignment="Center">
  19. <inventory:ItemSlotButtonContainer
  20. Name="SecondHotbar"
  21. SlotGroup="SecondHotbar"
  22. VerticalAlignment="Bottom"
  23. HorizontalAlignment="Right"
  24. VerticalExpand="False"
  25. ExpandBackwards="True"
  26. Columns="6"
  27. HorizontalExpand="False"/>
  28. <inventory:ItemStatusPanel
  29. Name="StatusPanelRight"
  30. HorizontalAlignment="Center" Margin="0 0 -2 2"
  31. SetWidth="125"
  32. SetHeight="60"/>
  33. <hands:HandsContainer
  34. Name="HandContainer"
  35. Access="Public"
  36. HorizontalAlignment="Center"
  37. HorizontalExpand="False"
  38. ColumnLimit="6"/>
  39. <inventory:ItemStatusPanel
  40. Name="StatusPanelLeft"
  41. HorizontalAlignment="Center" Margin="-2 0 0 2"
  42. SetWidth="125"
  43. SetHeight="60"/>
  44. <inventory:ItemSlotButtonContainer
  45. Name="MainHotbar"
  46. SlotGroup="MainHotbar"
  47. VerticalExpand="False"
  48. HorizontalAlignment="Left"
  49. VerticalAlignment="Bottom"
  50. HorizontalExpand="False"
  51. ExpandBackwards="True"
  52. Columns="6"
  53. />
  54. </BoxContainer>
  55. </BoxContainer>
  56. </widgets:HotbarGui>