mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
* Make autogenerated XAML fields public instead of protected * Make field always public, remove stray commented out code * Remove encapsulation for previously protected XAML UI fields * Make access level settable * Set access to public for DebugConsole LineEdit * Address reviews and add documentation * Remove documentation * Address reviews
14 lines
712 B
XML
14 lines
712 B
XML
<Control xmlns="https://spacestation14.io"
|
|
xmlns:gfx="clr-namespace:Robust.Client.Graphics">
|
|
<BoxContainer Orientation="Vertical">
|
|
<OutputPanel Name="Output" VerticalExpand="True">
|
|
<OutputPanel.StyleBoxOverride>
|
|
<gfx:StyleBoxFlat BackgroundColor="#25252add"
|
|
ContentMarginLeftOverride="3" ContentMarginRightOverride="3"
|
|
ContentMarginBottomOverride="3" ContentMarginTopOverride="3" />
|
|
</OutputPanel.StyleBoxOverride>
|
|
</OutputPanel>
|
|
<HistoryLineEdit Name="CommandBar" Access="Public" PlaceHolder="{Loc 'console-line-edit-placeholder'}" />
|
|
</BoxContainer>
|
|
</Control>
|