You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <UserControl
- x:Class="BPASmartClient.CustomResource.UserControls.GreenLight"
- 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="70"
- d:DesignWidth="70"
- mc:Ignorable="d">
- <Viewbox>
- <Canvas Width="70" Height="70">
- <Ellipse
- x:Name="on"
- Width="70"
- Height="70"
- Visibility="Collapsed">
- <Ellipse.Fill>
- <RadialGradientBrush>
- <GradientStop Color="#FFBAFFBB" />
- <GradientStop Offset="1" Color="#FF191717" />
- <GradientStop Offset="0.639" Color="#FF1FB700" />
- <GradientStop Offset="0.358" Color="#FFBAFFBB" />
- </RadialGradientBrush>
- </Ellipse.Fill>
- </Ellipse>
-
- <Ellipse
- Canvas.Left="17.5"
- Canvas.Top="17.5"
- Width="35"
- Height="35"
- Fill="#aaBAFFBB" />
-
- </Canvas>
- </Viewbox>
- </UserControl>
|