IFFConsoleWindow.xaml 1.3 KB

1234567891011121314151617181920
  1. <controls:FancyWindow xmlns="https://spacestation14.io"
  2. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  3. Title="{Loc 'iff-console-window-title'}"
  4. MinSize="200 200">
  5. <BoxContainer Orientation="Vertical" HorizontalExpand="True">
  6. <GridContainer Margin="4 0 0 0" Columns="2">
  7. <Label Name="ShowIFFLabel" Text="{Loc 'iff-console-show-iff-label'}" HorizontalExpand="True" StyleClasses="StatusFieldTitle" />
  8. <BoxContainer Orientation="Horizontal" MinWidth="120">
  9. <Button Name="ShowIFFOnButton" Text="{Loc 'iff-console-on'}" StyleClasses="OpenRight" />
  10. <Button Name="ShowIFFOffButton" Text="{Loc 'iff-console-off'}" StyleClasses="OpenLeft" />
  11. </BoxContainer>
  12. <Label Name="ShowVesselLabel" Text="{Loc 'iff-console-show-vessel-label'}" HorizontalExpand="True" StyleClasses="StatusFieldTitle" />
  13. <BoxContainer Orientation="Horizontal" MinWidth="120">
  14. <Button Name="ShowVesselOnButton" Text="{Loc 'iff-console-on'}" StyleClasses="OpenRight" />
  15. <Button Name="ShowVesselOffButton" Text="{Loc 'iff-console-off'}" StyleClasses="OpenLeft" />
  16. </BoxContainer>
  17. </GridContainer>
  18. </BoxContainer>
  19. </controls:FancyWindow>