* admin Object tab sorting and searchable * Fix for showing disconnected players on player admin tab * Fix namespace and search bar location. * Change linq to loop. * No more Linq to sort * Fix item click vv menu * Added refresh button and refresh on opening tab. * Clear spaces. * Move tab magic numbers to enums * Get rid of old unused xaml * Fix code style issues and button event type. * Merge in baby jail * More style cleanup and move cast around. * Make the localization a little more easy to read, same loc var names. * Missed Loc for label * Fix class field order * Over zelous delete. * Small updates. * Min syntax issues fix
21 lines
1.1 KiB
XML
21 lines
1.1 KiB
XML
<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>
|