mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
19 lines
875 B
XML
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>
|