123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <UserControl x:Class="Venus_Themes.UserControls.EFEM"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:Venus_Themes.UserControls"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Viewbox Stretch="Fill">
-
- <Border BorderThickness="0" BorderBrush="Gray">
- <Canvas Width="1200" Height="600">
- <Polygon Points="0,600 0,0 1200,0 1200,600 0,600" Stroke="#FF000000" StrokeThickness="3" >
- <Polygon.Fill>
- <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
- <GradientStop Color="Silver" Offset="0.0" />
- <GradientStop Color="White" Offset="0.5" />
- <GradientStop Color="Silver" Offset="1" />
- </LinearGradientBrush>
- </Polygon.Fill>
- </Polygon>
- <Ellipse Width="500" Height="500" Canvas.Left="350" Canvas.Top="50">
- <Ellipse.Fill>
- <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
- <GradientStop Color="Silver" Offset="0.0" />
- <GradientStop Color="White" Offset="0.5" />
- <GradientStop Color="Gray" Offset="1" />
- </LinearGradientBrush>
- </Ellipse.Fill>
- </Ellipse>
- <Path Stroke="White" Canvas.Left="0" Canvas.Top="40" StrokeThickness="2" Fill="Silver">
- <Path.Data>
- <GeometryGroup>
- <PathGeometry Figures="M 210,100 A 90,90 1 1 1 210,99.9"/>
- <PathGeometry Figures="M 200,100 A 80,80 1 1 1 200,99.9"/>
- <PathGeometry Figures="M 190,100 A 70,70 1 1 1 190,99.9" />
- <PathGeometry Figures="M 180,100 A 60,60 1 1 1 180,99.9" />
- <PathGeometry Figures="M 170,100 A 50,50 1 1 1 170,99.9" />
- <PathGeometry Figures="M 160,100 A 40,40 1 1 1 160,99.9" />
- <PathGeometry Figures="M 150,100 A 30,30 1 1 1 150,99.9" />
- </GeometryGroup>
- </Path.Data>
- </Path>
- <Path Stroke="White" Canvas.Left="950" Canvas.Top="40" StrokeThickness="2" Fill="Silver">
- <Path.Data>
- <GeometryGroup>
- <PathGeometry Figures="M 210,100 A 90,90 1 1 1 210,99.9"/>
- <PathGeometry Figures="M 200,100 A 80,80 1 1 1 200,99.9"/>
- <PathGeometry Figures="M 190,100 A 70,70 1 1 1 190,99.9" />
- <PathGeometry Figures="M 180,100 A 60,60 1 1 1 180,99.9" />
- <PathGeometry Figures="M 170,100 A 50,50 1 1 1 170,99.9" />
- <PathGeometry Figures="M 160,100 A 40,40 1 1 1 160,99.9" />
- <PathGeometry Figures="M 150,100 A 30,30 1 1 1 150,99.9" />
- </GeometryGroup>
- </Path.Data>
- </Path>
- <Path Stroke="White" Canvas.Left="0" Canvas.Top="360" StrokeThickness="2" Fill="Silver">
- <Path.Data>
- <GeometryGroup>
- <PathGeometry Figures="M 210,100 A 90,90 1 1 1 210,99.9"/>
- <PathGeometry Figures="M 200,100 A 80,80 1 1 1 200,99.9"/>
- <PathGeometry Figures="M 190,100 A 70,70 1 1 1 190,99.9" />
- <PathGeometry Figures="M 180,100 A 60,60 1 1 1 180,99.9" />
- <PathGeometry Figures="M 170,100 A 50,50 1 1 1 170,99.9" />
- <PathGeometry Figures="M 160,100 A 40,40 1 1 1 160,99.9" />
- <PathGeometry Figures="M 150,100 A 30,30 1 1 1 150,99.9" />
- </GeometryGroup>
- </Path.Data>
- </Path>
- <Path Stroke="White" Canvas.Left="950" Canvas.Top="360" StrokeThickness="2" Fill="Silver">
- <Path.Data>
- <GeometryGroup>
- <PathGeometry Figures="M 210,100 A 90,90 1 1 1 210,99.9"/>
- <PathGeometry Figures="M 200,100 A 80,80 1 1 1 200,99.9"/>
- <PathGeometry Figures="M 190,100 A 70,70 1 1 1 190,99.9" />
- <PathGeometry Figures="M 180,100 A 60,60 1 1 1 180,99.9" />
- <PathGeometry Figures="M 170,100 A 50,50 1 1 1 170,99.9" />
- <PathGeometry Figures="M 160,100 A 40,40 1 1 1 160,99.9" />
- <PathGeometry Figures="M 150,100 A 30,30 1 1 1 150,99.9" />
- </GeometryGroup>
- </Path.Data>
- </Path>
- <TextBlock Text="Cooling2" FontSize="30" Canvas.Left="66" Canvas.Top="5"/>
- <TextBlock Text="Aligner2" FontSize="30" Canvas.Left="1014" Canvas.Top="5"/>
- <TextBlock Text="Cooling1" FontSize="30" Canvas.Left="66" Canvas.Top="328"/>
- <TextBlock Text="Aligner1" FontSize="30" Canvas.Left="1014" Canvas.Top="328"/>
- </Canvas>
- </Border>
- </Viewbox>
- </UserControl>
|