1
0

OfferingWindowOption.xaml 975 B

123456789101112131415161718192021222324
  1. <PanelContainer xmlns="https://spacestation14.io"
  2. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  3. HorizontalExpand="True"
  4. Name="BigPanel"
  5. Margin="5 0">
  6. <BoxContainer Orientation="Vertical"
  7. Margin="5 5">
  8. <!-- Title box -->
  9. <controls:StripeBack>
  10. <Label Name="TitleStripe"
  11. HorizontalAlignment="Center"
  12. Margin="0 5 0 5"/>
  13. </controls:StripeBack>
  14. <BoxContainer Orientation="Vertical" Name="ContentBox"/>
  15. <!-- Buffer so all claim buttons are in the same position -->
  16. <Control VerticalExpand="True"/>
  17. <Button Name="ClaimButton"
  18. HorizontalExpand="True"
  19. VerticalAlignment="Bottom"
  20. ToggleMode="True"
  21. Disabled="True"
  22. Text="{Loc 'offering-window-claim'}"/>
  23. </BoxContainer>
  24. </PanelContainer>