WarDeclaratorWindow.xaml 1.0 KB

1234567891011121314151617181920212223
  1. <controls:FancyWindow xmlns="https://spacestation14.io"
  2. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="{Loc 'war-declarator-ui-header'}">
  5. <BoxContainer Orientation="Vertical" SeparationOverride="4" MinWidth="440">
  6. <TextEdit Name="MessageEdit"
  7. HorizontalExpand="True"
  8. MinHeight="200"
  9. Access="Public" />
  10. <Button Name="WarButton"
  11. Text="{Loc 'war-declarator-ui-try-war-button'}"
  12. StyleClasses="Caution"
  13. Access="Public"/>
  14. <BoxContainer Orientation="Vertical" HorizontalExpand="True">
  15. <Label Name="StatusLabel"
  16. Align="Center"
  17. Access="Public"/>
  18. <Label Name="InfoLabel"
  19. Align="Center"
  20. Access="Public"/>
  21. </BoxContainer>
  22. </BoxContainer>
  23. </controls:FancyWindow>