123456789101112131415161718192021222324252627282930313233 |
- <UserControl x:Class="NEIntelligentControl2.Views.BoostStation.SwitchBase"
- 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:NEIntelligentControl2.Views.BoostStation"
- mc:Ignorable="d"
- Width="16.5" Height="12" Background="{DynamicResource BoostStationBackground}" MouseLeftButtonDown="UserControl_MouseLeftButtonDown" Loaded="UserControl_Loaded">
- <Viewbox Width="{Binding RelativeSource={RelativeSource AncestorType={x:Type UserControl}, Mode=FindAncestor}, Path=Width}" Height="{Binding RelativeSource={RelativeSource AncestorType={x:Type UserControl}, Mode=FindAncestor}, Path=Height}">
- <Viewbox.Style>
- <Style TargetType="Viewbox">
- <Style.Triggers>
- <DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType={x:Type UserControl}, Mode=FindAncestor}, Path=IsSelected}" Value="True">
- <Setter Property="Effect">
- <Setter.Value>
- <DropShadowEffect ShadowDepth="0" BlurRadius="9" Color="WhiteSmoke"/>
- </Setter.Value>
- </Setter>
- </DataTrigger>
- </Style.Triggers>
- </Style>
- </Viewbox.Style>
- <Canvas Name="g10" Width="16.485" Height="12.299">
- <Canvas.RenderTransform>
- <TranslateTransform X="-846.12" Y="-159.77"/>
- </Canvas.RenderTransform>
- <Line xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" X1="854.14" Y1="159.77" X2="854.14" Y2="172.07" Name="line2" StrokeThickness="2.5" Stroke="#FF40B9B0" StrokeMiterLimit="10"/>
- <Line xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" X1="862.6" Y1="165.93" X2="854.14" Y2="165.93" Name="line4" StrokeThickness="2.5" Stroke="#FF40B9B0" StrokeMiterLimit="10"/>
- <Line xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" X1="850.76" Y1="162.31" X2="850.76" Y2="169.54" Name="line6" StrokeThickness="2.5" Stroke="#FF40B9B0" StrokeMiterLimit="10"/>
- <Line xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" X1="847.37" Y1="163.73" X2="847.37" Y2="168.12" Name="line8" StrokeThickness="2.5" Stroke="#FF40B9B0" StrokeMiterLimit="10"/>
- </Canvas>
- </Viewbox>
- </UserControl>
|