1
0

AccessOverriderWindow.xaml 933 B

1234567891011121314151617181920212223
  1. <DefaultWindow xmlns="https://spacestation14.io"
  2. MinSize="650 290">
  3. <BoxContainer Orientation="Vertical">
  4. <GridContainer Columns="2">
  5. <GridContainer Columns="3" HorizontalExpand="True">
  6. <Label Text="{Loc 'access-overrider-window-privileged-id'}" />
  7. <Button Name="PrivilegedIdButton" Access="Public"/>
  8. <Label Name="PrivilegedIdLabel" />
  9. </GridContainer>
  10. </GridContainer>
  11. <Label Name="TargetNameLabel" />
  12. <Control MinSize="0 8"/>
  13. <GridContainer Name="AccessLevelGrid" Columns="5" HorizontalAlignment="Center">
  14. <!-- Access level buttons are added here by the C# code -->
  15. </GridContainer>
  16. <Control MinSize="0 8"/>
  17. <Label Name="MissingPrivilegesLabel" />
  18. <Control MinSize="0 4"/>
  19. <Label Name="MissingPrivilegesText" />
  20. </BoxContainer>
  21. </DefaultWindow>