|
- <UserControl
- x:Class="BPASmartClient.Academy.View.RetortTank"
- 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.Academy.View"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- d:DesignHeight="450"
- d:DesignWidth="800"
- mc:Ignorable="d">
- <Viewbox Stretch="Uniform">
- <Grid Background="Transparent">
- <Path StrokeThickness="0.5">
- <Path.Data>
- <GeometryGroup>
- <PathGeometry>
- <PathFigure StartPoint="0,0">
- <LineSegment Point="0,100" />
- <LineSegment Point="100,100" />
- <LineSegment Point="100,0" />
- </PathFigure>
- </PathGeometry>
- <PathGeometry>
- <PathFigure StartPoint="0,0">
- <BezierSegment
- Point1="0,0"
- Point2="50,-30"
- Point3="100,0" />
- </PathFigure>
- </PathGeometry>
- <PathGeometry>
- <PathFigure StartPoint="0,100">
- <LineSegment Point="35,130" />
- <LineSegment Point="65,130" />
- <LineSegment Point="100,100" />
- </PathFigure>
- </PathGeometry>
- <PathGeometry>
- <PathFigure StartPoint="35,160">
- <LineSegment Point="35,130"/>
- <LineSegment Point="65,130"/>
- <LineSegment Point="65,160"/>
- </PathFigure>
- </PathGeometry>
- <PathGeometry>
- <PathFigure StartPoint="35,160">
- <BezierSegment Point1="35,160" Point2="50,180" Point3="65,160"/>
- </PathFigure>
- </PathGeometry>
- </GeometryGroup>
-
- </Path.Data>
- <Path.Fill>
- <LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">
- <LinearGradientBrush.GradientStops>
- <GradientStop Offset="0" Color="#FF808285" />
- <GradientStop Offset="0.5" Color="#FFF6F6F6" />
- <GradientStop Offset="1" Color="#FF808285" />
- </LinearGradientBrush.GradientStops>
- </LinearGradientBrush>
- </Path.Fill>
- </Path>
- <Path
- Width="100"
- Height="2.5"
- VerticalAlignment="Top"
- Data="F1M0.002,2.995L94.916,2.995 94.916,5.36200000000001 0.002,5.36200000000001z"
- Fill="#FFD9D9D9"
- Stretch="Fill" />
- <Path
- Width="100"
- Height="2.5"
- Margin="0,31,0,0"
- Data="F1M0.002,2.995L94.916,2.995 94.916,5.36200000000001 0.002,5.36200000000001z"
- Fill="#FFD9D9D9"
- Stretch="Fill" />
- <Path
- Width="32"
- Height="2.5"
- Margin="0,90,0,0"
- Data="F1M0.002,2.995L94.916,2.995 94.916,5.36200000000001 0.002,5.36200000000001z"
- Fill="#FFD9D9D9"
- Stretch="Fill" />
- </Grid>
- </Viewbox>
- </UserControl>
|