ObserveWarningWindow.xaml 869 B

1234567891011121314
  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. <Label Text="{Loc 'observe-warning-2'}"/>
  7. <BoxContainer Orientation="Horizontal">
  8. <Button Name="NevermindButton" Text="{Loc 'observe-nevermind'}" SizeFlagsStretchRatio="1"/>
  9. <Control HorizontalExpand="True" SizeFlagsStretchRatio="2" />
  10. <cc:CommandButton Command="observe" Name="ObserveButton" StyleClasses="Caution" Text="{Loc 'observe-confirm'}" SizeFlagsStretchRatio="1"/>
  11. <cc:CommandButton Command="observe admin" Name="ObserveAsAdminButton" Text="{Loc 'observe-as-admin'}" SizeFlagsStretchRatio="1" Visible="False"/>
  12. </BoxContainer>
  13. </BoxContainer>
  14. </DefaultWindow>