|
- <UserControl x:Class="BPASmartClient.SCADAControl.CustomerControls.TheEllipse"
- 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:BPASmartClient.SCADAControl.CustomerControls"
- mc:Ignorable="d"
- x:Name="root"
- Foreground="#FF00EDFF"
- BorderBrush="Transparent"
- BorderThickness="4"
- d:DesignHeight="800" d:DesignWidth="800">
- <Ellipse Tag="Ellipse"
- Fill="{Binding ElementName=root,Path=BJColor,Mode=TwoWay}"
- Stroke="{Binding ElementName=root,Path=Foreground}"
- StrokeThickness="{Binding ElementName=root,Path=BKThickness}"
- StrokeDashArray="{Binding ElementName=root,Path=DoubleArray,Mode=TwoWay}"
- >
-
- </Ellipse>
- </UserControl>
|