终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

84 lines
3.2 KiB

  1. <UserControl
  2. x:Class="BPASmartClient.CustomResource.UserControls.Bottle"
  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.CustomResource.UserControls"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. d:DesignHeight="200"
  9. d:DesignWidth="70"
  10. mc:Ignorable="d">
  11. <Border BorderThickness="0">
  12. <Viewbox>
  13. <Canvas Width="70" Height="200">
  14. <Ellipse
  15. Width="70"
  16. Height="18"
  17. HorizontalAlignment="Left"
  18. VerticalAlignment="Center"
  19. Fill="#97e8f4"
  20. StrokeThickness="0" />
  21. <Rectangle
  22. Canvas.Top="10"
  23. Width="70"
  24. Height="160"
  25. HorizontalAlignment="Center"
  26. VerticalAlignment="Top"
  27. Stroke="Black"
  28. StrokeThickness="0">
  29. <Rectangle.Fill>
  30. <LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">
  31. <GradientStop Color="#FF97E8F4" />
  32. <GradientStop Offset="1" Color="#FF97E8F4" />
  33. <GradientStop Offset="0.45" Color="#FEFFFFFF" />
  34. <GradientStop Offset="0.55" Color="#FEF9F9F9" />
  35. </LinearGradientBrush>
  36. </Rectangle.Fill>
  37. </Rectangle>
  38. <Border
  39. Canvas.Left="14"
  40. Canvas.Top="188"
  41. Width="42"
  42. Height="12"
  43. HorizontalAlignment="Left"
  44. VerticalAlignment="Top"
  45. Background="DimGray"
  46. BorderThickness="0" />
  47. <Path
  48. Canvas.Left="0.5"
  49. Canvas.Top="172.334"
  50. Width="69"
  51. Height="15"
  52. HorizontalAlignment="Center"
  53. VerticalAlignment="Top"
  54. Data="M0,167 L13.833,187.83301 56.201249,187.83301 70,167"
  55. Fill="#FFD8D35B"
  56. Stretch="Fill"
  57. StrokeThickness="0" />
  58. <Ellipse
  59. Canvas.Left="-0.5"
  60. Canvas.Top="161"
  61. Width="71"
  62. Height="18"
  63. HorizontalAlignment="Left"
  64. VerticalAlignment="Top"
  65. Fill="#FFD8D35B"
  66. Stroke="#FF636242"
  67. StrokeThickness="0.5" />
  68. <Rectangle
  69. Name="refile"
  70. Canvas.Bottom="30"
  71. Width="70"
  72. Height="0"
  73. HorizontalAlignment="Center"
  74. VerticalAlignment="Center"
  75. Fill="#FFD8D35B"
  76. Stroke="Black"
  77. StrokeThickness="0" />
  78. </Canvas>
  79. </Viewbox>
  80. </Border>
  81. </UserControl>