1
0

ObserveWarningWindow.xaml 1.0 KB

123456789101112131415161718192021222324
  1. <DefaultWindow
  2. xmlns="https://spacestation14.io"
  3. xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls">
  4. <BoxContainer Orientation="Vertical">
  5. <Label Text="{Loc 'observe-warning-1'}"/>
  6. <BoxContainer Orientation="Horizontal">
  7. <Button Name="NevermindButton"
  8. Text="{Loc 'observe-nevermind'}"
  9. SizeFlagsStretchRatio="1"/>
  10. <Control HorizontalExpand="True"
  11. SizeFlagsStretchRatio="2"/>
  12. <cc:CommandButton Command="observe"
  13. Name="ObserveButton"
  14. StyleClasses="Caution"
  15. Text="{Loc 'observe-confirm'}"
  16. SizeFlagsStretchRatio="1"/>
  17. <cc:CommandButton Command="observe admin"
  18. Name="ObserveAsAdminButton"
  19. Text="{Loc 'observe-as-admin'}"
  20. SizeFlagsStretchRatio="1"
  21. Visible="False"/>
  22. </BoxContainer>
  23. </BoxContainer>
  24. </DefaultWindow>