BoatView.xaml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <UserControl
  2. x:Class="Aitex.Core.UI.Control.BoatView"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. Width="150"
  8. Height="380"
  9. mc:Ignorable="d">
  10. <Grid>
  11. <Border
  12. Width="100"
  13. Height="34"
  14. Margin="24,0,24,360"
  15. BorderBrush="Black"
  16. BorderThickness="0,1,0,0"
  17. CornerRadius="120" />
  18. <Border
  19. Width="100"
  20. Height="225"
  21. Margin="24,14,24,141"
  22. BorderBrush="Black"
  23. BorderThickness="1,0,1,1" />
  24. <Border
  25. Width="80"
  26. Height="10"
  27. Margin="34,238,34,132"
  28. BorderBrush="Black"
  29. BorderThickness="1" />
  30. <Border
  31. Width="120"
  32. Height="5"
  33. Margin="12,247,12,128"
  34. BorderBrush="Black"
  35. BorderThickness="1" />
  36. <Border
  37. Width="120"
  38. Height="100"
  39. Margin="15,251,15,29"
  40. BorderBrush="Black"
  41. BorderThickness="1" />
  42. <Border
  43. Width="90"
  44. Height="4"
  45. Margin="28,257,28,119"
  46. BorderBrush="Black"
  47. BorderThickness="1" />
  48. <Border
  49. Width="20"
  50. Height="15"
  51. Margin="62,260,68,105"
  52. BorderBrush="Black"
  53. BorderThickness="1" />
  54. <Border
  55. Margin="96,260,25,112"
  56. BorderBrush="Black"
  57. BorderThickness="1,0,1,1" />
  58. <Border
  59. Width="20"
  60. Height="18"
  61. Margin="124,242,6,120"
  62. BorderBrush="Black"
  63. BorderThickness="1,0,0,0" />
  64. <Border
  65. Margin="70,251,76,122"
  66. BorderBrush="Black"
  67. BorderThickness="1" />
  68. </Grid>
  69. </UserControl>