* Remove unused class, clean up XAML * Move GhostGui.cs into UI folder and namespace * GhostTargetWindow to seperate file * GhostTargetWindow to XAML * Center request button * Improve UI, localisation
17 lines
664 B
XML
17 lines
664 B
XML
<SS14Window xmlns="https://spacestation14.io"
|
|
Title="{Loc 'ghost-roles-window-title'}"
|
|
MinSize="375 275">
|
|
<Label Name="NoRolesMessage"
|
|
Text="{Loc 'ghost-roles-window-no-roles-available-label'}"
|
|
VerticalAlignment="Top" />
|
|
<ScrollContainer HorizontalExpand="True"
|
|
VerticalExpand="True">
|
|
<BoxContainer Orientation="Vertical"
|
|
Name="EntryContainer"
|
|
HorizontalExpand="True"
|
|
VerticalExpand="True">
|
|
<!-- Ghost role entries are added here by code -->
|
|
</BoxContainer>
|
|
</ScrollContainer>
|
|
</SS14Window>
|