GhostRolesWindow.xaml 653 B

12345678910111213141516
  1. <DefaultWindow xmlns="https://spacestation14.io"
  2. Title="{Loc 'ghost-roles-window-title'}"
  3. MinSize="490 400"
  4. SetSize="490 500">
  5. <Label Name="NoRolesMessage"
  6. Text="{Loc 'ghost-roles-window-no-roles-available-label'}"
  7. VerticalAlignment="Top" />
  8. <ScrollContainer VerticalExpand="True"
  9. HScrollEnabled="False">
  10. <BoxContainer Orientation="Vertical"
  11. Name="EntryContainer"
  12. VerticalExpand="True">
  13. <!-- Ghost role entries are added here by code -->
  14. </BoxContainer>
  15. </ScrollContainer>
  16. </DefaultWindow>