| 1234567891011121314151617181920 |
- <Control xmlns="https://spacestation14.io"
- xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls"
- xmlns:ot="clr-namespace:Content.Client.Administration.UI.Tabs.ObjectsTab"
- xmlns:co="clr-namespace:Content.Client.UserInterface.Controls">
- <BoxContainer Orientation="Vertical">
- <BoxContainer Orientation="Horizontal">
- <Label Text="{Loc object-tab-object-type}" />
- <OptionButton Name="ObjectTypeOptions" HorizontalAlignment="Left" />
- <LineEdit Name="SearchLineEdit" PlaceHolder="{Loc object-tab-object-search}" HorizontalExpand="True"
- SizeFlagsStretchRatio="1" />
- <Button Name="RefreshListButton" Text="{Loc object-tab-refresh-button}" ToggleMode="False" />
- </BoxContainer>
- <cc:HSeparator />
- <BoxContainer Orientation="Vertical" HorizontalExpand="True" VerticalExpand="True">
- <ot:ObjectsTabHeader Name="ListHeader" />
- <cc:HSeparator />
- <co:SearchListContainer Name="SearchList" Access="Public" VerticalExpand="True" />
- </BoxContainer>
- </BoxContainer>
- </Control>
|