MiscTab.xaml 2.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. <tabs:MiscTab xmlns="https://spacestation14.io"
  2. xmlns:tabs="clr-namespace:Content.Client.Options.UI.Tabs"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:ui="clr-namespace:Content.Client.Options.UI">
  5. <BoxContainer Orientation="Vertical">
  6. <ScrollContainer VerticalExpand="True" HorizontalExpand="True">
  7. <BoxContainer Orientation="Vertical" Margin="8 8 8 8" VerticalExpand="True">
  8. <Label Text="{Loc 'ui-options-general-ui-style'}"
  9. StyleClasses="LabelKeyText"/>
  10. <ui:OptionDropDown Name="DropDownHudTheme" Title="{Loc 'ui-options-hud-theme'}" />
  11. <ui:OptionDropDown Name="DropDownHudLayout" Title="{Loc 'ui-options-hud-layout'}" />
  12. <Label Text="{Loc 'ui-options-general-discord'}"
  13. StyleClasses="LabelKeyText"/>
  14. <CheckBox Name="DiscordRich" Text="{Loc 'ui-options-discordrich'}" />
  15. <Label Text="{Loc 'ui-options-general-speech'}"
  16. StyleClasses="LabelKeyText"/>
  17. <CheckBox Name="ShowOocPatronColor" Text="{Loc 'ui-options-show-ooc-patron-color'}" />
  18. <CheckBox Name="ShowLoocAboveHeadCheckBox" Text="{Loc 'ui-options-show-looc-on-head'}" />
  19. <CheckBox Name="FancySpeechBubblesCheckBox" Text="{Loc 'ui-options-fancy-speech'}" />
  20. <CheckBox Name="FancyNameBackgroundsCheckBox" Text="{Loc 'ui-options-fancy-name-background'}" />
  21. <Label Text="{Loc 'ui-options-general-cursor'}"
  22. StyleClasses="LabelKeyText"/>
  23. <CheckBox Name="ShowHeldItemCheckBox" Text="{Loc 'ui-options-show-held-item'}" />
  24. <CheckBox Name="ShowCombatModeIndicatorsCheckBox" Text="{Loc 'ui-options-show-combat-mode-indicators'}" />
  25. <Label Text="{Loc 'ui-options-general-storage'}"
  26. StyleClasses="LabelKeyText"/>
  27. <CheckBox Name="OpaqueStorageWindowCheckBox" Text="{Loc 'ui-options-opaque-storage-window'}" />
  28. <CheckBox Name="StaticStorageUI" Text="{Loc 'ui-options-static-storage-ui'}" />
  29. <!-- <CheckBox Name="ToggleWalk" Text="{Loc 'ui-options-hotkey-toggle-walk'}" /> -->
  30. </BoxContainer>
  31. </ScrollContainer>
  32. <ui:OptionsTabControlRow Name="Control" Access="Public" />
  33. </BoxContainer>
  34. </tabs:MiscTab>