KeyRebindTab.xaml 1016 B

12345678910111213141516171819202122
  1. <Control xmlns="https://spacestation14.io"
  2. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls">
  3. <BoxContainer Orientation="Vertical">
  4. <ScrollContainer VerticalExpand="True">
  5. <BoxContainer Name="KeybindsContainer" Orientation="Vertical" Margin="8 8 8 8">
  6. <!-- Keybind buttons are added here in the C# code -->
  7. </BoxContainer>
  8. </ScrollContainer>
  9. <controls:StripeBack HasBottomEdge="False" HasMargins="False">
  10. <BoxContainer Orientation="Horizontal" Margin="8 8">
  11. <Control MinSize="8 0" />
  12. <Label Text="{Loc 'ui-options-binds-explanation'}" StyleClasses="LabelSubText" />
  13. <Button Name="ResetAllButton"
  14. Text="{Loc 'ui-options-binds-reset-all'}"
  15. HorizontalExpand="True"
  16. HorizontalAlignment="Right" />
  17. </BoxContainer>
  18. </controls:StripeBack>
  19. </BoxContainer>
  20. </Control>