LoadoutWindow.xaml 1.1 KB

12345678910111213141516171819202122
  1. <controls:FancyWindow xmlns="https://spacestation14.io"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  4. xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
  5. SetSize="800 800"
  6. MinSize="800 128">
  7. <BoxContainer Orientation="Vertical" VerticalExpand="True">
  8. <BoxContainer Name="RoleNameBox" Orientation="Vertical" Margin="10">
  9. <Label Name="LoadoutNameLabel"/>
  10. <PanelContainer HorizontalExpand="True" SetHeight="24">
  11. <PanelContainer.PanelOverride>
  12. <graphics:StyleBoxFlat BackgroundColor="#1B1B1E" />
  13. </PanelContainer.PanelOverride>
  14. <LineEdit Name="RoleNameEdit" VerticalExpand="True" HorizontalExpand="True"/>
  15. </PanelContainer>
  16. </BoxContainer>
  17. <VerticalTabContainer Name="LoadoutGroupsContainer"
  18. VerticalExpand="True"
  19. HorizontalExpand="True">
  20. </VerticalTabContainer>
  21. </BoxContainer>
  22. </controls:FancyWindow>