mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 11:40:52 +01:00
* UI Debugger: Make it look better * cleanup - Use GetOrNew() - Use typeof(Control) - Don't check string prefixes
30 lines
1.6 KiB
XML
30 lines
1.6 KiB
XML
<Control xmlns="https://spacestation14.io"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="Robust.Client.UserInterface.DevWindowTabUI"
|
|
xmlns:gfx="clr-namespace:Robust.Client.Graphics">
|
|
<PanelContainer HorizontalExpand="True" VerticalExpand="True">
|
|
<PanelContainer.PanelOverride>
|
|
<gfx:StyleBoxFlat BackgroundColor="#25252add" ContentMarginTopOverride="3" />
|
|
</PanelContainer.PanelOverride>
|
|
<BoxContainer Orientation="Vertical">
|
|
<PanelContainer Name="TopbarButtons" HorizontalExpand="True">
|
|
<BoxContainer HorizontalExpand="True" Orientation="Horizontal">
|
|
<Button Name="ControlPicker" ToggleMode="True" Text="Inspect Element" />
|
|
<Button Name="RefreshPropertiesButton" Text="Refresh Props" />
|
|
</BoxContainer>
|
|
</PanelContainer>
|
|
<SplitContainer HorizontalExpand="True" VerticalExpand="True"
|
|
Orientation="Horizontal" ResizeMode="RespectChildrenMinSize">
|
|
<ScrollContainer>
|
|
<PanelContainer Name="TreeRootBG">
|
|
<BoxContainer Name="ControlTreeRoot" Orientation="Vertical" MouseFilter="Stop" />
|
|
</PanelContainer>
|
|
</ScrollContainer>
|
|
<ScrollContainer HScrollEnabled="False">
|
|
<BoxContainer Name="ControlProperties" Orientation="Vertical" MouseFilter="Stop" />
|
|
</ScrollContainer>
|
|
</SplitContainer>
|
|
</BoxContainer>
|
|
</PanelContainer>
|
|
</Control>
|