HealthAnalyzerWindow.xaml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <controls:FancyWindow
  2. xmlns="https://spacestation14.io"
  3. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  4. MaxHeight="525"
  5. MinWidth="300">
  6. <ScrollContainer
  7. Margin="5 5 5 5"
  8. ReturnMeasure="True"
  9. VerticalExpand="True">
  10. <BoxContainer
  11. Name="RootContainer"
  12. VerticalExpand="True"
  13. Orientation="Vertical">
  14. <Label
  15. Name="NoPatientDataText"
  16. Text="{Loc health-analyzer-window-no-patient-data-text}" />
  17. <BoxContainer
  18. Name="PatientDataContainer"
  19. Margin="0 0 0 5"
  20. Orientation="Vertical">
  21. <BoxContainer Orientation="Horizontal" Margin="0 0 0 5">
  22. <SpriteView OverrideDirection="South" Scale="2 2" Name="SpriteView" Access="Public" SetSize="64 64" />
  23. <TextureRect Name="NoDataTex" Access="Public" SetSize="64 64" Visible="false" Stretch="KeepAspectCentered" TexturePath="/Textures/Interface/Misc/health_analyzer_out_of_range.png"/>
  24. <BoxContainer Margin="5 0 0 0" Orientation="Vertical" VerticalAlignment="Top">
  25. <RichTextLabel Name="NameLabel" SetWidth="150" />
  26. <Label Name="SpeciesLabel" VerticalAlignment="Top" StyleClasses="LabelSubText" />
  27. </BoxContainer>
  28. <Label Margin="0 0 5 0" HorizontalExpand="True" HorizontalAlignment="Right" VerticalExpand="True"
  29. VerticalAlignment="Top" Name="ScanModeLabel"
  30. Text="{Loc 'health-analyzer-window-entity-unknown-text'}" />
  31. </BoxContainer>
  32. <PanelContainer StyleClasses="LowDivider" />
  33. <GridContainer Margin="0 5 0 0" Columns="2">
  34. <Label Text="{Loc 'health-analyzer-window-entity-status-text'}" />
  35. <Label Name="StatusLabel" />
  36. <Label Text="{Loc 'health-analyzer-window-entity-temperature-text'}" />
  37. <Label Name="TemperatureLabel" />
  38. <Label Text="{Loc 'health-analyzer-window-entity-blood-level-text'}" />
  39. <Label Name="BloodLabel" />
  40. <Label Text="{Loc 'health-analyzer-window-entity-damage-total-text'}" />
  41. <Label Name="DamageLabel" />
  42. </GridContainer>
  43. </BoxContainer>
  44. <PanelContainer Name="AlertsDivider" Visible="False" StyleClasses="LowDivider" />
  45. <BoxContainer Name="AlertsContainer" Visible="False" Margin="0 5" Orientation="Vertical" HorizontalAlignment="Center">
  46. </BoxContainer>
  47. <PanelContainer StyleClasses="LowDivider" />
  48. <BoxContainer
  49. Name="GroupsContainer"
  50. Margin="0 5 0 5"
  51. Orientation="Vertical">
  52. </BoxContainer>
  53. </BoxContainer>
  54. </ScrollContainer>
  55. </controls:FancyWindow>