AITSignalTower.xaml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <UserControl x:Class="Aitex.Core.UI.DeviceControl.AITSignalTower"
  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="20" />
  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.Effect>
  27. <DropShadowEffect ShadowDepth="0"
  28. Color="Green"
  29. RenderingBias="Performance"
  30. Opacity="1"
  31. BlurRadius="20"/>
  32. <!--<BlurEffect RenderingBias="Performance" Radius="15" >
  33. </BlurEffect>-->
  34. </Image.Effect>
  35. </Image>
  36. <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">
  37. <Image.Effect>
  38. <DropShadowEffect ShadowDepth="0"
  39. Color="Green"
  40. RenderingBias="Performance"
  41. Opacity="1"
  42. BlurRadius="20"/>
  43. <!--<BlurEffect RenderingBias="Performance" Radius="15" >
  44. </BlurEffect>-->
  45. </Image.Effect>
  46. </Image>
  47. <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" >
  48. <Image.Effect>
  49. <DropShadowEffect ShadowDepth="0"
  50. Color="Green"
  51. RenderingBias="Performance"
  52. Opacity="1"
  53. BlurRadius="20"/>
  54. <!--<BlurEffect RenderingBias="Performance" Radius="15" >
  55. </BlurEffect>-->
  56. </Image.Effect>
  57. </Image>
  58. <Image Grid.Row="4" Canvas.Left="0" Canvas.Top="0" Name="rectangle5" Stretch="Fill" Source="pack://application:,,,/MECF.Framework.Common;component/Resources/lights.png" Width="30" Height="25" >
  59. <Image.Effect>
  60. <DropShadowEffect ShadowDepth="0"
  61. Color="White"
  62. RenderingBias="Performance"
  63. Opacity="1"
  64. BlurRadius="20"/>
  65. <!--<BlurEffect RenderingBias="Performance" Radius="15" >
  66. </BlurEffect>-->
  67. </Image.Effect>
  68. </Image>
  69. </Grid>
  70. </UserControl>