终端一体化运控平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

87 рядки
3.8 KiB

  1. <UserControl
  2. x:Class="BPASmartClient.Academy.View.RetortTank"
  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:local="clr-namespace:BPASmartClient.Academy.View"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. d:DesignHeight="450"
  9. d:DesignWidth="800"
  10. mc:Ignorable="d">
  11. <Viewbox Stretch="Uniform">
  12. <Grid Background="Transparent">
  13. <Path StrokeThickness="0.5">
  14. <Path.Data>
  15. <GeometryGroup>
  16. <PathGeometry>
  17. <PathFigure StartPoint="0,0">
  18. <LineSegment Point="0,100" />
  19. <LineSegment Point="100,100" />
  20. <LineSegment Point="100,0" />
  21. </PathFigure>
  22. </PathGeometry>
  23. <PathGeometry>
  24. <PathFigure StartPoint="0,0">
  25. <BezierSegment
  26. Point1="0,0"
  27. Point2="50,-30"
  28. Point3="100,0" />
  29. </PathFigure>
  30. </PathGeometry>
  31. <PathGeometry>
  32. <PathFigure StartPoint="0,100">
  33. <LineSegment Point="35,130" />
  34. <LineSegment Point="65,130" />
  35. <LineSegment Point="100,100" />
  36. </PathFigure>
  37. </PathGeometry>
  38. <PathGeometry>
  39. <PathFigure StartPoint="35,160">
  40. <LineSegment Point="35,130"/>
  41. <LineSegment Point="65,130"/>
  42. <LineSegment Point="65,160"/>
  43. </PathFigure>
  44. </PathGeometry>
  45. <PathGeometry>
  46. <PathFigure StartPoint="35,160">
  47. <BezierSegment Point1="35,160" Point2="50,180" Point3="65,160"/>
  48. </PathFigure>
  49. </PathGeometry>
  50. </GeometryGroup>
  51. </Path.Data>
  52. <Path.Fill>
  53. <LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">
  54. <LinearGradientBrush.GradientStops>
  55. <GradientStop Offset="0" Color="#FF808285" />
  56. <GradientStop Offset="0.5" Color="#FFF6F6F6" />
  57. <GradientStop Offset="1" Color="#FF808285" />
  58. </LinearGradientBrush.GradientStops>
  59. </LinearGradientBrush>
  60. </Path.Fill>
  61. </Path>
  62. <Path
  63. Width="100"
  64. Height="2.5"
  65. VerticalAlignment="Top"
  66. Data="F1M0.002,2.995L94.916,2.995 94.916,5.36200000000001 0.002,5.36200000000001z"
  67. Fill="#FFD9D9D9"
  68. Stretch="Fill" />
  69. <Path
  70. Width="100"
  71. Height="2.5"
  72. Margin="0,31,0,0"
  73. Data="F1M0.002,2.995L94.916,2.995 94.916,5.36200000000001 0.002,5.36200000000001z"
  74. Fill="#FFD9D9D9"
  75. Stretch="Fill" />
  76. <Path
  77. Width="32"
  78. Height="2.5"
  79. Margin="0,90,0,0"
  80. Data="F1M0.002,2.995L94.916,2.995 94.916,5.36200000000001 0.002,5.36200000000001z"
  81. Fill="#FFD9D9D9"
  82. Stretch="Fill" />
  83. </Grid>
  84. </Viewbox>
  85. </UserControl>