终端一体化运控平台
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.
 
 
 

38 lines
1.3 KiB

  1. <UserControl
  2. x:Class="BPASmartClient.CustomResource.UserControls.YellowLight"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:BPASmartClient.CustomResource.UserControls"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. d:DesignHeight="70"
  9. d:DesignWidth="70"
  10. mc:Ignorable="d">
  11. <Viewbox>
  12. <Canvas Width="70" Height="70">
  13. <Ellipse
  14. Name="on"
  15. Width="70"
  16. Height="70"
  17. Visibility="Collapsed">
  18. <Ellipse.Fill>
  19. <RadialGradientBrush>
  20. <GradientStop Color="#ffe097" />
  21. <GradientStop Offset="1" Color="#FF191717" />
  22. <GradientStop Offset="0.639" Color="#8f6800" />
  23. <GradientStop Offset="0.358" Color="#ffe097" />
  24. </RadialGradientBrush>
  25. </Ellipse.Fill>
  26. </Ellipse>
  27. <Ellipse
  28. Canvas.Left="17.5"
  29. Canvas.Top="17.5"
  30. Width="35"
  31. Height="35"
  32. Fill="#aaffe097" />
  33. </Canvas>
  34. </Viewbox>
  35. </UserControl>