AdminMessagePopupWindow.xaml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Control xmlns="https://spacestation14.io"
  2. xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client">
  3. <PanelContainer MouseFilter="Stop">
  4. <PanelContainer.PanelOverride>
  5. <!-- semi-transparent background -->
  6. <gfx:StyleBoxFlat BackgroundColor="#000000AA" />
  7. </PanelContainer.PanelOverride>
  8. <Control HorizontalAlignment="Center" VerticalAlignment="Center" MaxWidth="600">
  9. <PanelContainer StyleClasses="AngleRect" />
  10. <BoxContainer Orientation="Vertical" Margin="4">
  11. <RichTextLabel Name="Description" />
  12. <!-- Contains actual messages -->
  13. <ScrollContainer HScrollEnabled="False" Margin="4" VerticalExpand="True" ReturnMeasure="True" MaxHeight="400">
  14. <BoxContainer Orientation="Vertical" Name="MessageContainer" Margin="0 2 0 0" />
  15. </ScrollContainer>
  16. <Label Name="WaitLabel" />
  17. <BoxContainer Orientation="Horizontal">
  18. <Button Name="DismissButton"
  19. Text="{Loc 'admin-notes-message-dismiss'}"
  20. Disabled="True"
  21. HorizontalExpand="True"
  22. StyleClasses="OpenRight" />
  23. <Button Name="AcceptButton"
  24. Text="{Loc 'admin-notes-message-accept'}"
  25. Disabled="True"
  26. HorizontalExpand="True"
  27. StyleClasses="OpenLeft" />
  28. </BoxContainer>
  29. </BoxContainer>
  30. </Control>
  31. </PanelContainer>
  32. </Control>