SignalTower.xaml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <UserControl x:Class="Aitex.Core.UI.Control.SignalTower"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. mc:Ignorable="d"
  7. d:DesignHeight="105" d:DesignWidth="30">
  8. <Grid Height="105" Width="30">
  9. <Grid.RowDefinitions>
  10. <RowDefinition Height="20" />
  11. <RowDefinition Height="20" />
  12. <RowDefinition Height="20" />
  13. <RowDefinition Height="20" />
  14. <RowDefinition Height="25" />
  15. </Grid.RowDefinitions>
  16. <Image Canvas.Left="0" Canvas.Top="0" Name="rectangle1" Stretch="Fill" Source="pack://application:,,,/MECF.Framework.Common;component/Resources/red.png" Width="30" Height="20" VerticalAlignment="Top">
  17. <Image.Effect>
  18. <DropShadowEffect ShadowDepth="0"
  19. Color="Red"
  20. RenderingBias="Performance"
  21. Opacity="1"
  22. BlurRadius="20"/>
  23. </Image.Effect>
  24. </Image>
  25. <Image Grid.Row="1" Canvas.Left="0" Canvas.Top="0" Name="rectangle2" Stretch="Fill" Source="pack://application:,,,/MECF.Framework.Common;component/Resources/yellow.png" Width="30" Height="20" VerticalAlignment="Bottom" PreviewMouseDown="rectangle2_PreviewMouseDown">
  26. </Image>
  27. <Image Grid.Row="2" Canvas.Left="0" Canvas.Top="0" Name="rectangle3" Stretch="Fill" Source="pack://application:,,,/MECF.Framework.Common;component/Resources/Lime.png" Width="30">
  28. <Image.Effect>
  29. <DropShadowEffect ShadowDepth="0"
  30. Color="Green"
  31. RenderingBias="Performance"
  32. Opacity="1"
  33. BlurRadius="20"/>
  34. <!--<BlurEffect RenderingBias="Performance" Radius="15" >
  35. </BlurEffect>-->
  36. </Image.Effect>
  37. </Image>
  38. <!--Image Grid.Row="3" Canvas.Left="0" Canvas.Top="0" Name="rectangle4" Stretch="Fill" Source="pack://application:,,,/MECF.Framework.Common;component/Resources/Blue.png" Width="30" Height="20" /-->
  39. <Image Grid.Row="3" Canvas.Left="0" Canvas.Top="0" Name="rectangle5" Stretch="Fill" Source="pack://application:,,,/MECF.Framework.Common;component/Resources/lights.png" Width="30" Height="25" />
  40. </Grid>
  41. </UserControl>