BanListHeader.xaml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <ContainerButton
  2. xmlns="https://spacestation14.io"
  3. xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls">
  4. <PanelContainer Name="BackgroundPanel" Access="Public">
  5. <BoxContainer
  6. Orientation="Horizontal"
  7. HorizontalExpand="True"
  8. SeparationOverride="4">
  9. <Label Text="{Loc ban-list-header-ids}"
  10. SizeFlagsStretchRatio="1"
  11. HorizontalExpand="True"/>
  12. <cc:VSeparator/>
  13. <Label Text="{Loc ban-list-header-reason}"
  14. SizeFlagsStretchRatio="6"
  15. HorizontalExpand="True"/>
  16. <cc:VSeparator/>
  17. <Label Text="{Loc ban-list-header-time}"
  18. SizeFlagsStretchRatio="2"
  19. HorizontalExpand="True"/>
  20. <cc:VSeparator/>
  21. <Label Text="{Loc ban-list-header-expires}"
  22. SizeFlagsStretchRatio="4"
  23. HorizontalExpand="True"/>
  24. <cc:VSeparator/>
  25. <Label Text="{Loc ban-list-header-banning-admin}"
  26. SizeFlagsStretchRatio="2"
  27. HorizontalExpand="True"/>
  28. </BoxContainer>
  29. </PanelContainer>
  30. </ContainerButton>