PlayerListControl.xaml 713 B

123456789101112131415161718
  1. <BoxContainer xmlns="https://spacestation14.io"
  2. xmlns:controls="using:Content.Client.UserInterface.Controls"
  3. Orientation="Vertical">
  4. <Control MinSize="0 5" />
  5. <LineEdit Name="FilterLineEdit"
  6. MinSize="100 0"
  7. HorizontalExpand="True"
  8. PlaceHolder="{Loc player-list-filter}"/>
  9. <PanelContainer Name="BackgroundPanel"
  10. VerticalExpand="True"
  11. HorizontalExpand="True">
  12. <controls:ListContainer Name="PlayerListContainer"
  13. Access="Public"
  14. Toggle="True"
  15. Group="True"
  16. MinSize="100 0"/>
  17. </PanelContainer>
  18. </BoxContainer>