ObjectsTabEntry.xaml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <PanelContainer xmlns="https://spacestation14.io"
  2. xmlns:customControls="clr-namespace:Content.Client.Administration.UI.CustomControls"
  3. Name="BackgroundColorPanel">
  4. <BoxContainer Orientation="Horizontal"
  5. HorizontalExpand="True"
  6. SeparationOverride="4">
  7. <Label Name="NameLabel"
  8. SizeFlagsStretchRatio="5"
  9. HorizontalExpand="True"
  10. ClipText="True"/>
  11. <customControls:VSeparator/>
  12. <Label Name="EIDLabel"
  13. SizeFlagsStretchRatio="5"
  14. HorizontalExpand="True"
  15. ClipText="True"/>
  16. <customControls:VSeparator/>
  17. <Button Name="TeleportButton"
  18. Text="{Loc object-tab-entity-teleport}"
  19. SizeFlagsStretchRatio="3"
  20. HorizontalExpand="True"
  21. ClipText="True"/>
  22. <customControls:VSeparator/>
  23. <Button Name="DeleteButton"
  24. Text="{Loc object-tab-entity-delete}"
  25. SizeFlagsStretchRatio="3"
  26. HorizontalExpand="True"
  27. ClipText="True"/>
  28. </BoxContainer>
  29. </PanelContainer>