CreditsWindow.xaml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <DefaultWindow xmlns="https://spacestation14.io"
  2. Title="{Loc 'credits-window-title'}"
  3. SetSize="650 650" >
  4. <TabContainer>
  5. <ScrollContainer Name="Ss14ContributorsTab"
  6. HScrollEnabled="False">
  7. <BoxContainer Name="Ss14ContributorsContainer"
  8. Orientation="Vertical"
  9. Margin="2 2 0 0">
  10. <!-- Contributors get added here by code -->
  11. </BoxContainer>
  12. </ScrollContainer>
  13. <ScrollContainer Name="PatronsTab"
  14. HScrollEnabled="False">
  15. <BoxContainer Name="PatronsContainer"
  16. Orientation="Vertical"
  17. Margin="2 2 0 0">
  18. <!-- Patrons get added here by code -->
  19. </BoxContainer>
  20. </ScrollContainer>
  21. <ScrollContainer Name="LicensesTab"
  22. HScrollEnabled="False">
  23. <BoxContainer Name="LicensesContainer"
  24. Orientation="Vertical"
  25. Margin="2 2 0 0">
  26. <!-- Licenses get added here by code -->
  27. </BoxContainer>
  28. </ScrollContainer>
  29. </TabContainer>
  30. </DefaultWindow>