Files
tbd-station-14/Content.Client/GameObjects/Components/Observer/GhostRoles/MakeGhostRoleWindow.xaml
Pieter-Jan Briers b898443f28 WPF layout (#3346)
2021-02-21 12:38:56 +01:00

27 lines
940 B
XML

<SS14Window Title="Make Ghost Role"
xmlns="https://spacestation14.io">
<VBoxContainer>
<HBoxContainer>
<Label Name="RoleEntityLabel" Text="Entity" />
<Label Name="RoleEntity" Text="" />
</HBoxContainer>
<HBoxContainer>
<Label Name="RoleNameLabel" Text="Role Name" />
<LineEdit Name="RoleName" HorizontalExpand="True" />
</HBoxContainer>
<HBoxContainer>
<Label Name="RoleDescriptionLabel" Text="Role Description" />
<LineEdit Name="RoleDescription" HorizontalExpand="True" />
</HBoxContainer>
<HBoxContainer>
<Label Name="MakeSentientLabel" Text="Make Sentient" />
<CheckBox Name="MakeSentientCheckbox" />
</HBoxContainer>
<HBoxContainer>
<Button Name="MakeButton" Text="Make" />
</HBoxContainer>
</VBoxContainer>
</SS14Window>