RequirementsSelector.xaml 561 B

1234567891011121314
  1. <BoxContainer xmlns="https://spacestation14.io"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. Orientation="Horizontal">
  4. <Label Name="TitleLabel"
  5. Margin="5 0"
  6. MouseFilter="Stop"/>
  7. <!--21 was the height of OptionsContainer at the time that this button was added. So I am limiting the texture to 21x21-->
  8. <Control SetSize="21 21">
  9. <TextureButton Name="Help" StyleClasses="HelpButton"/>
  10. </Control>
  11. <BoxContainer Name="OptionsContainer"
  12. SetWidth="400"/>
  13. </BoxContainer>