RoleBanListHeader.xaml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  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="4.5"
  15. HorizontalExpand="True"/>
  16. <cc:VSeparator Name="ReasonSeparator" Access="Public"/>
  17. <Label Text="{Loc ban-list-header-role}"
  18. SizeFlagsStretchRatio="1.5"
  19. HorizontalExpand="True"/>
  20. <cc:VSeparator/>
  21. <Label Text="{Loc ban-list-header-time}"
  22. SizeFlagsStretchRatio="2"
  23. HorizontalExpand="True"/>
  24. <cc:VSeparator/>
  25. <Label Text="{Loc ban-list-header-expires}"
  26. SizeFlagsStretchRatio="4"
  27. HorizontalExpand="True"/>
  28. <cc:VSeparator/>
  29. <Label Text="{Loc ban-list-header-banning-admin}"
  30. SizeFlagsStretchRatio="2"
  31. HorizontalExpand="True"/>
  32. </BoxContainer>
  33. </PanelContainer>
  34. </ContainerButton>