1
0

PickSurgeryWindow.xaml 1.5 KB

12345678910111213141516171819202122232425262728
  1. <!--
  2. SPDX-FileCopyrightText: 2024 deltanedas <39013340+deltanedas@users.noreply.github.com>
  3. SPDX-FileCopyrightText: 2024 deltanedas <@deltanedas:kde.org>
  4. SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
  5. SPDX-License-Identifier: AGPL-3.0-or-later
  6. -->
  7. <controls:FancyWindow
  8. xmlns="https://spacestation14.io"
  9. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  10. Title="{Loc 'autodoc-add-step-surgery'}"
  11. MinSize="600 400">
  12. <BoxContainer Orientation="Horizontal" VerticalExpand="True" HorizontalExpand="True">
  13. <BoxContainer Orientation="Vertical" MinWidth="200" HorizontalAlignment="Center">
  14. <BoxContainer Name="Symmetry" Orientation="Horizontal" HorizontalExpand="True"/> <!-- Populated with a radio option of BodyPartSymmetry values -->
  15. <PanelContainer StyleClasses="LowDivider" Margin="0 5 0 5"/>
  16. <ScrollContainer VerticalExpand="True" HorizontalExpand="True">
  17. <ItemList Name="Parts"/> <!-- Populated with BodyPartType values -->
  18. </ScrollContainer>
  19. <PanelContainer StyleClasses="LowDivider" Margin="0 5 0 5"/>
  20. <Button Name="SubmitButton" Text="{Loc 'autodoc-submit'}" Disabled="True"/>
  21. </BoxContainer>
  22. <ScrollContainer HorizontalExpand="True">
  23. <ItemList Name="Surgeries"/> <!-- Populated with SharedSurgerySystem.AllSurgeries -->
  24. </ScrollContainer>
  25. </BoxContainer>
  26. </controls:FancyWindow>