ActionPageButtons.xaml 1.2 KB

12345678910111213141516171819202122232425
  1. <controls:ActionPageButtons
  2. xmlns="https://spacestation14.io"
  3. xmlns:controls="clr-namespace:Content.Client.UserInterface.Systems.Actions.Controls">
  4. <BoxContainer Orientation="Horizontal">
  5. <Control HorizontalExpand="True" SizeFlagsStretchRatio="1"/>
  6. <TextureButton TexturePath="left_arrow.svg.192dpi"
  7. SizeFlagsStretchRatio="1"
  8. Scale="0.5 0.5"
  9. HorizontalAlignment="Center"
  10. VerticalAlignment="Center"
  11. Name="LeftArrow"
  12. Access="Public"/>
  13. <Control HorizontalExpand="True" SizeFlagsStretchRatio="2"/>
  14. <Label Text="1" SizeFlagsStretchRatio="1" Name="Label" Access="Public" />
  15. <Control HorizontalExpand="True" SizeFlagsStretchRatio="2"/>
  16. <TextureButton TexturePath="right_arrow.svg.192dpi"
  17. SizeFlagsStretchRatio="1"
  18. Scale="0.5 0.5"
  19. HorizontalAlignment="Center"
  20. VerticalAlignment="Center"
  21. Name="RightArrow"
  22. Access="Public"/>
  23. <Control HorizontalExpand="True" SizeFlagsStretchRatio="1"/>
  24. </BoxContainer>
  25. </controls:ActionPageButtons>