mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-14 19:30:01 +01:00
* Merge IFF controls into one control. * Implement logic to hide IFF of sydicate IFF console on map load. Add hideOnInit property to IFFConsoleComponent * DataField --------- Co-authored-by: ScarKy0 <106310278+ScarKy0@users.noreply.github.com>
15 lines
893 B
XML
15 lines
893 B
XML
<controls:FancyWindow xmlns="https://spacestation14.io"
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
|
Title="{Loc 'iff-console-window-title'}"
|
|
MinSize="200 200">
|
|
<BoxContainer Orientation="Vertical" HorizontalExpand="True">
|
|
<GridContainer Margin="4 0 0 0" Columns="2">
|
|
<Label Name="ShowIFFLabel" Text="{Loc 'iff-console-show-iff-label'}" HorizontalExpand="True" StyleClasses="highlight" />
|
|
<BoxContainer Orientation="Horizontal" MinWidth="120">
|
|
<Button Name="ShowIFFOnButton" Text="{Loc 'iff-console-on'}" StyleClasses="OpenRight" />
|
|
<Button Name="ShowIFFOffButton" Text="{Loc 'iff-console-off'}" StyleClasses="OpenLeft" />
|
|
</BoxContainer>
|
|
</GridContainer>
|
|
</BoxContainer>
|
|
</controls:FancyWindow>
|