1
0

FaxWindow.xaml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <DefaultWindow xmlns="https://spacestation14.io"
  2. Title="{Loc 'fax-machine-ui-window'}"
  3. MinWidth="250">
  4. <BoxContainer Orientation="Vertical" VerticalExpand="True">
  5. <BoxContainer Orientation="Horizontal" HorizontalExpand="True">
  6. <Label Text="{Loc 'fax-machine-ui-paper'}" />
  7. <Control MinWidth="4" />
  8. <Label Name="PaperStatusLabel" />
  9. </BoxContainer>
  10. <Control HorizontalExpand="True" MinHeight="20" />
  11. <BoxContainer Orientation="Horizontal" HorizontalExpand="True">
  12. <Label Text="{Loc 'fax-machine-ui-from'}" />
  13. <Control MinWidth="4" />
  14. <Label Name="FromLabel" />
  15. </BoxContainer>
  16. <BoxContainer Orientation="Horizontal" HorizontalExpand="True">
  17. <Label Text="{Loc 'fax-machine-ui-to'}" />
  18. <Control MinWidth="4" />
  19. <OptionButton Name="PeerSelector" HorizontalExpand="True" />
  20. </BoxContainer>
  21. <Control HorizontalExpand="True" MinHeight="20" />
  22. <BoxContainer Orientation="Horizontal" HorizontalExpand="True">
  23. <Button Name="FileButton"
  24. Text="{Loc 'fax-machine-ui-file-button'}"
  25. HorizontalExpand="False"/>
  26. <Button Name="PaperButton"
  27. Text="{Loc 'fax-machine-ui-paper-button-normal'}"
  28. HorizontalExpand="False"/>
  29. </BoxContainer>
  30. <BoxContainer Orientation="Horizontal" HorizontalExpand="True">
  31. <Button Name="CopyButton"
  32. Text="{Loc 'fax-machine-ui-copy-button'}"
  33. HorizontalExpand="False"
  34. Disabled="True" />
  35. <Button Name="SendButton"
  36. Text="{Loc 'fax-machine-ui-send-button'}"
  37. HorizontalExpand="True"
  38. Disabled="True" />
  39. <Button Name="RefreshButton"
  40. Text="{Loc 'fax-machine-ui-refresh-button'}" />
  41. </BoxContainer>
  42. </BoxContainer>
  43. </DefaultWindow>