|
- <UserControl
- x:Class="BPASmartClient.CustomResource.UserControls.Bottle"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:BPASmartClient.CustomResource.UserControls"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- d:DesignHeight="200"
- d:DesignWidth="70"
- mc:Ignorable="d">
- <Border BorderThickness="0">
- <Viewbox>
- <Canvas Width="70" Height="200">
-
- <Ellipse
- Width="70"
- Height="18"
- HorizontalAlignment="Left"
- VerticalAlignment="Center"
- Fill="#97e8f4"
- StrokeThickness="0" />
- <Rectangle
- Canvas.Top="10"
- Width="70"
- Height="160"
- HorizontalAlignment="Center"
- VerticalAlignment="Top"
- Stroke="Black"
- StrokeThickness="0">
- <Rectangle.Fill>
- <LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">
- <GradientStop Color="#FF97E8F4" />
- <GradientStop Offset="1" Color="#FF97E8F4" />
- <GradientStop Offset="0.45" Color="#FEFFFFFF" />
- <GradientStop Offset="0.55" Color="#FEF9F9F9" />
- </LinearGradientBrush>
- </Rectangle.Fill>
- </Rectangle>
- <Border
- Canvas.Left="14"
- Canvas.Top="188"
- Width="42"
- Height="12"
- HorizontalAlignment="Left"
- VerticalAlignment="Top"
- Background="DimGray"
- BorderThickness="0" />
- <Path
- Canvas.Left="0.5"
- Canvas.Top="172.334"
- Width="69"
- Height="15"
- HorizontalAlignment="Center"
- VerticalAlignment="Top"
- Data="M0,167 L13.833,187.83301 56.201249,187.83301 70,167"
- Fill="#FFD8D35B"
- Stretch="Fill"
- StrokeThickness="0" />
- <Ellipse
- Canvas.Left="-0.5"
- Canvas.Top="161"
- Width="71"
- Height="18"
- HorizontalAlignment="Left"
- VerticalAlignment="Top"
- Fill="#FFD8D35B"
- Stroke="#FF636242"
- StrokeThickness="0.5" />
- <Rectangle
- Name="refile"
- Canvas.Bottom="30"
- Width="70"
- Height="0"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Fill="#FFD8D35B"
- Stroke="Black"
- StrokeThickness="0" />
-
- </Canvas>
- </Viewbox>
- </Border>
- </UserControl>
|