ActionsBar.xaml 704 B

12345678910111213141516171819
  1. <widgets:ActionsBar
  2. xmlns="https://spacestation14.io"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:widgets="clr-namespace:Content.Client.UserInterface.Systems.Actions.Widgets"
  5. xmlns:controls="clr-namespace:Content.Client.UserInterface.Systems.Actions.Controls"
  6. VerticalExpand="False"
  7. Orientation="Horizontal"
  8. HorizontalExpand="False"
  9. >
  10. <BoxContainer Orientation="Vertical">
  11. <controls:ActionButtonContainer
  12. HorizontalAlignment="Center"
  13. VerticalAlignment="Center"
  14. MaxSize="64 9999"
  15. Name="ActionsContainer"
  16. Access="Public"
  17. Rows="1"/>
  18. </BoxContainer>
  19. </widgets:ActionsBar>