MedBookWindow.xaml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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"
  22. Margin="0 0 0 5">
  23. <SpriteView OverrideDirection="South"
  24. Scale="2 2"
  25. Name="SpriteView"
  26. Access="Public"
  27. SetSize="64 64"/>
  28. <TextureRect Name="NoDataTex"
  29. Access="Public"
  30. SetSize="64 64"
  31. Visible="false"
  32. Stretch="KeepAspectCentered"
  33. TexturePath="/Textures/Interface/Misc/health_analyzer_out_of_range.png"/>
  34. <BoxContainer Margin="5 0 0 0"
  35. Orientation="Vertical"
  36. VerticalAlignment="Top">
  37. <RichTextLabel Name="NameLabel"
  38. SetWidth="150"/>
  39. <Label Name="SpeciesLabel"
  40. VerticalAlignment="Top"
  41. StyleClasses="LabelSubText"/>
  42. </BoxContainer>
  43. </BoxContainer>
  44. <PanelContainer StyleClasses="LowDivider"/>
  45. <GridContainer Margin="0 5 0 0"
  46. Columns="2">
  47. <Label Text="{Loc 'health-analyzer-window-entity-status-text'}"/>
  48. <Label Name="StatusLabel"/>
  49. <Label Text="{Loc 'health-analyzer-window-entity-blood-level-text'}"/>
  50. <Label Name="BloodLabel"/>
  51. </GridContainer>
  52. </BoxContainer>
  53. <PanelContainer Name="AlertsDivider"
  54. Visible="False"
  55. StyleClasses="LowDivider"/>
  56. <BoxContainer Name="AlertsContainer"
  57. Visible="False"
  58. Margin="0 5"
  59. Orientation="Vertical"
  60. HorizontalAlignment="Center">
  61. </BoxContainer>
  62. <PanelContainer StyleClasses="LowDivider"/>
  63. <BoxContainer
  64. Name="GroupsContainer"
  65. Margin="0 5 0 5"
  66. Orientation="Vertical">
  67. </BoxContainer>
  68. </BoxContainer>
  69. </ScrollContainer>
  70. </controls:FancyWindow>