Files
RobustToolbox/Robust.Client/UserInterface/DevWindow/ProfSettings.xaml
T
2022-05-14 15:08:46 +10:00

19 lines
875 B
XML

<Control xmlns="https://spacestation14.io"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Robust.Client.UserInterface.ProfSettings">
<BoxContainer Orientation="Vertical">
<BoxContainer Orientation="Horizontal" SeparationOverride="8">
<Label Text="enabled" HorizontalExpand="True" />
<CheckBox Name="SettingEnabled" Disabled="True" />
</BoxContainer>
<BoxContainer Orientation="Horizontal" SeparationOverride="8">
<Label Text="buffer_size" HorizontalExpand="True" />
<Label Name="SettingBufferSize" />
</BoxContainer>
<BoxContainer Orientation="Horizontal" SeparationOverride="8">
<Label Text="index_size" HorizontalExpand="True" />
<Label Name="SettingIndexSize" />
</BoxContainer>
</BoxContainer>
</Control>