ObjectsTab.xaml 1.1 KB

1234567891011121314151617181920
  1. <Control xmlns="https://spacestation14.io"
  2. xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls"
  3. xmlns:ot="clr-namespace:Content.Client.Administration.UI.Tabs.ObjectsTab"
  4. xmlns:co="clr-namespace:Content.Client.UserInterface.Controls">
  5. <BoxContainer Orientation="Vertical">
  6. <BoxContainer Orientation="Horizontal">
  7. <Label Text="{Loc object-tab-object-type}" />
  8. <OptionButton Name="ObjectTypeOptions" HorizontalAlignment="Left" />
  9. <LineEdit Name="SearchLineEdit" PlaceHolder="{Loc object-tab-object-search}" HorizontalExpand="True"
  10. SizeFlagsStretchRatio="1" />
  11. <Button Name="RefreshListButton" Text="{Loc object-tab-refresh-button}" ToggleMode="False" />
  12. </BoxContainer>
  13. <cc:HSeparator />
  14. <BoxContainer Orientation="Vertical" HorizontalExpand="True" VerticalExpand="True">
  15. <ot:ObjectsTabHeader Name="ListHeader" />
  16. <cc:HSeparator />
  17. <co:SearchListContainer Name="SearchList" Access="Public" VerticalExpand="True" />
  18. </BoxContainer>
  19. </BoxContainer>
  20. </Control>