OfferingWindow.xaml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <controls:FancyWindow xmlns="https://spacestation14.io"
  2. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  3. MinSize="800 360">
  4. <BoxContainer Orientation="Vertical">
  5. <BoxContainer Orientation="Horizontal" Name="ProgressionBox" Visible="False">
  6. <Label Name="ProgressionLabel"
  7. Text="{Loc 'salvage-expedition-window-progression'}"
  8. SetWidth="96"
  9. Margin="5"/>
  10. <ProgressBar Name="ProgressionBar"
  11. HorizontalExpand="True"
  12. MinValue="0"
  13. MaxValue="1"
  14. SetHeight="25"/>
  15. <Label Name="ProgressionText" Text="00:00"
  16. Margin="5"/>
  17. </BoxContainer>
  18. <BoxContainer Orientation="Horizontal">
  19. <Label Name="NextOfferLabel"
  20. Text="{Loc 'salvage-expedition-window-next'}"
  21. SetWidth="96"
  22. Margin="5"/>
  23. <ProgressBar Name="NextOfferBar"
  24. HorizontalExpand="True"
  25. MinValue="0"
  26. MaxValue="1"
  27. SetHeight="25"/>
  28. <Label Name="NextOfferText" Text="0.00"
  29. Margin="5"/>
  30. </BoxContainer>
  31. <controls:HLine Color="#404040" Thickness="2" Margin="0 5 0 5"/>
  32. <BoxContainer Name="Container"
  33. Orientation="Horizontal"
  34. Margin="5 0 5 0"/>
  35. </BoxContainer>
  36. </controls:FancyWindow>