BFormRealTime.xaml 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. <Window x:Class="WWPipeLine.WPF.BFormRealTime"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WWPipeLine.WPF"
  7. mc:Ignorable="d"
  8. Title="BForm" Height="450" Width="800" Background="Transparent" AllowsTransparency="True" ResizeMode="NoResize" WindowStyle="None">
  9. <Grid>
  10. <Grid ShowGridLines="False" Background="Transparent" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
  11. <Grid.RowDefinitions>
  12. <RowDefinition/>
  13. <RowDefinition/>
  14. <RowDefinition/>
  15. <RowDefinition/>
  16. <RowDefinition/>
  17. <RowDefinition/>
  18. <RowDefinition/>
  19. <RowDefinition/>
  20. <RowDefinition/>
  21. <RowDefinition/>
  22. <RowDefinition/>
  23. <RowDefinition/>
  24. <RowDefinition/>
  25. <RowDefinition/>
  26. </Grid.RowDefinitions>
  27. <Grid.ColumnDefinitions>
  28. <ColumnDefinition/>
  29. <ColumnDefinition/>
  30. <ColumnDefinition/>
  31. <ColumnDefinition/>
  32. <ColumnDefinition/>
  33. <ColumnDefinition/>
  34. <ColumnDefinition/>
  35. <ColumnDefinition/>
  36. </Grid.ColumnDefinitions>
  37. <DockPanel x:Name="RightBorder" Grid.Row="0" Grid.Column="7" Width="20" Grid.RowSpan="14" HorizontalAlignment="Right">
  38. <DockPanel.Effect>
  39. <DropShadowEffect ShadowDepth="10" BlurRadius="50" Color="Black" />
  40. </DockPanel.Effect>
  41. <DockPanel.Background>
  42. <LinearGradientBrush StartPoint="1,0" EndPoint="0,0">
  43. <GradientStop Color="#99000000" Offset="0"/>
  44. <GradientStop Color="#00000000" Offset="1"/>
  45. </LinearGradientBrush>
  46. </DockPanel.Background>
  47. </DockPanel>
  48. <DockPanel x:Name="BottomBorder" Grid.Row="13" Grid.Column="0" Height="20" Grid.ColumnSpan="8" VerticalAlignment="Bottom">
  49. <DockPanel.Background>
  50. <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
  51. <GradientStop Color="#00000000" Offset="0"/>
  52. <GradientStop Color="#000000" Offset="1"/>
  53. </LinearGradientBrush>
  54. </DockPanel.Background>
  55. </DockPanel>
  56. <Grid HorizontalAlignment="Stretch" VerticalAlignment="Top" Grid.Row="13" Grid.Column="0" Grid.ColumnSpan="4">
  57. <Grid.RowDefinitions>
  58. <RowDefinition/>
  59. <RowDefinition Height="6"/>
  60. <RowDefinition/>
  61. </Grid.RowDefinitions>
  62. <Grid.ColumnDefinitions>
  63. <ColumnDefinition Width="40"/>
  64. <ColumnDefinition Width="120"/>
  65. <ColumnDefinition/>
  66. </Grid.ColumnDefinitions>
  67. <Label Name="m_LabelAlertTime" Grid.Row="2" Grid.Column="1" FontSize="18" Foreground="WhiteSmoke" Margin="0,-10,0,0">15:18:32</Label>
  68. <DockPanel Grid.Row="0" Margin="0,0,0,5" Grid.Column="1">
  69. <TextBlock FontSize="22" Text="报警信息" Foreground="White" VerticalAlignment="Bottom" HorizontalAlignment="Left" FontFamily="Microsoft YaHei Bold"></TextBlock>
  70. </DockPanel>
  71. <DockPanel Grid.Row="1" Grid.Column="1">
  72. <Line X1="0" Y1="0" X2="20" Y2="0" Stroke="Yellow" VerticalAlignment="Top" StrokeThickness="6" HorizontalAlignment="Left"/>
  73. <Line X1="0" Y1="0" X2="60" Y2="0" Stroke="Yellow" VerticalAlignment="Top" StrokeThickness="2" HorizontalAlignment="Left"/>
  74. </DockPanel>
  75. <DockPanel Grid.Row="2" x:Name="AlertPanel" Height="28" VerticalAlignment="Bottom" Grid.Column="2">
  76. <Image x:Name="AlertImage" Width="28" Height="28"/>
  77. <TextBlock x:Name="AlertContext" Text="告警:雁塔区翠华路污水处理厂排污口硫化物超标,请及时处理!" Foreground="Red" FontSize="20"/>
  78. </DockPanel>
  79. </Grid>
  80. <DockPanel x:Name="TopBorder" Grid.Row="0" Grid.Column="0" Height="60" Grid.ColumnSpan="8" VerticalAlignment="Top">
  81. <DockPanel.Background>
  82. <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
  83. <GradientStop Color="#000000" Offset="0"/>
  84. <GradientStop Color="#00000000" Offset="1"/>
  85. </LinearGradientBrush>
  86. </DockPanel.Background>
  87. </DockPanel>
  88. <DockPanel x:Name="PanelLeft" Grid.Row="0" Grid.Column="0" Grid.RowSpan="14" Margin="0,0,0,0" Width="20" HorizontalAlignment="Left">
  89. <DockPanel.Background>
  90. <LinearGradientBrush StartPoint="0,0" EndPoint="1,0">
  91. <GradientStop Color="Black" Offset="0"/>
  92. <GradientStop Color="#00000000" Offset="0.99"/>
  93. </LinearGradientBrush>
  94. </DockPanel.Background>
  95. </DockPanel>
  96. <!--<DockPanel Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" HorizontalAlignment="Center">
  97. <TextBlock Text="三维管线信息系统" Foreground="White" FontSize="32" FontWeight="ExtraBold"></TextBlock>
  98. </DockPanel>-->
  99. <DockPanel Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" HorizontalAlignment="Stretch">
  100. <Grid HorizontalAlignment="Stretch">
  101. <Grid.ColumnDefinitions>
  102. <ColumnDefinition Width="20*" />
  103. </Grid.ColumnDefinitions>
  104. <Image Grid.Column="0" x:Name="m_ImageLogoBg" HorizontalAlignment="Stretch" Margin="0,0,0,-10"></Image>
  105. </Grid>
  106. </DockPanel>
  107. <DockPanel Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" HorizontalAlignment="Stretch">
  108. <Grid HorizontalAlignment="Stretch">
  109. <Grid.ColumnDefinitions>
  110. <ColumnDefinition Width="3*" />
  111. <ColumnDefinition Width="17*" />
  112. </Grid.ColumnDefinitions>
  113. <Image x:Name="m_ImageLogoICO" Grid.Column="0" Margin="10,0,20,20"></Image>
  114. <Image x:Name="m_ImageTitle" Grid.Column="1" Margin="0,10,50,20"></Image>
  115. </Grid>
  116. </DockPanel>
  117. <!--<DockPanel x:Name="m_PanelLeftCahrt01" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="1" Grid.RowSpan="2">
  118. <TextBlock DockPanel.Dock="Top" Text="第一个标题一定要酷" HorizontalAlignment="Center" Foreground="White"/>
  119. </DockPanel>-->
  120. <Grid x:Name="m_PanelLeftCahrt02" Grid.Row="1" Grid.Column="6" Grid.ColumnSpan="2" Grid.RowSpan="12" Background="#99061F30" Margin="0,0,20,0">
  121. <Grid.RowDefinitions>
  122. <RowDefinition Height="30"/>
  123. <RowDefinition Height="6*"/>
  124. <RowDefinition Height="20"/>
  125. <RowDefinition Height="30"/>
  126. <RowDefinition Height="4*"/>
  127. </Grid.RowDefinitions>
  128. <Grid.ColumnDefinitions>
  129. <ColumnDefinition Width="20"/>
  130. <ColumnDefinition/>
  131. </Grid.ColumnDefinitions>
  132. <Image x:Name="m_ImageGJXX" VerticalAlignment="Center" Margin="5" Grid.Column="1" HorizontalAlignment="Left"></Image>
  133. <TextBlock Grid.Column="1" VerticalAlignment="Center" Text="告警信息" FontSize="18" Foreground="#2AC2FC" HorizontalAlignment="Left" Margin="20,0,0,0"/>
  134. <Line Grid.Column="1" X1="0" Y1="0" X2="500" Y2="0" Stroke="#33eeeeee" VerticalAlignment="Bottom" StrokeThickness="1" HorizontalAlignment="Left" Margin="0,0,10,0"/>
  135. <DataGrid Grid.Column="1" Margin="0,10,20,0" BorderThickness="0" Grid.Row="1" Name="m_DataGridEvents"
  136. RowHeight="38"
  137. HorizontalScrollBarVisibility="Hidden" ColumnWidth="*" AutoGenerateColumns="True"
  138. GridLinesVisibility="None" HorizontalGridLinesBrush="#44aaaaaa" IsReadOnly="True" FontFamily="Yu Gothic UI Semibold">
  139. <DataGrid.Background>
  140. <LinearGradientBrush StartPoint="0,0" EndPoint="1,0">
  141. <GradientStop Color="#00000000" Offset="0"/>
  142. <GradientStop Color="#00000000" Offset="1"/>
  143. </LinearGradientBrush>
  144. </DataGrid.Background>
  145. <DataGrid.ColumnHeaderStyle>
  146. <Style TargetType="{x:Type DataGridColumnHeader}">
  147. <Setter Property="Background" Value="Transparent"/>
  148. <Setter Property="Foreground" Value="White" />
  149. <Setter Property="Height" Value="28"/>
  150. <Setter Property="FontSize" Value="18"/>
  151. <Setter Property="FontWeight" Value="Bold"/>
  152. <Setter Property="HorizontalAlignment" Value="Center"/>
  153. </Style>
  154. </DataGrid.ColumnHeaderStyle>
  155. <DataGrid.RowStyle>
  156. <Style TargetType="{x:Type DataGridRow}">
  157. <Setter Property="HorizontalContentAlignment" Value="Center" />
  158. <Setter Property="VerticalAlignment" Value="Bottom" />
  159. <Setter Property="Background" Value="Transparent"/>
  160. <Setter Property="FontSize" Value="16"/>
  161. </Style>
  162. </DataGrid.RowStyle>
  163. <DataGrid.CellStyle>
  164. <Style TargetType="{x:Type DataGridCell}">
  165. <Setter Property="VerticalAlignment" Value="Center"/>
  166. <Setter Property="HorizontalAlignment" Value="Center"/>
  167. </Style>
  168. </DataGrid.CellStyle>
  169. </DataGrid>
  170. <Image Grid.Row="3" x:Name="m_ImageJCZB" Margin="5" VerticalAlignment="Center" Grid.Column="1" HorizontalAlignment="Left"></Image>
  171. <TextBlock Grid.Column="1" Grid.Row="3" VerticalAlignment="Center" Text="监测指标" FontSize="18" Foreground="#2AC2FC" HorizontalAlignment="Left" Margin="20,0,0,0"/>
  172. <Line Grid.Column="1" Grid.Row="3" X1="10" Y1="0" X2="500" Y2="0" Stroke="#33eeeeee" VerticalAlignment="Bottom" StrokeThickness="1" HorizontalAlignment="Left" Margin="0,0,10,0"/>
  173. <Grid Grid.Column="1" x:Name="m_PanelLeftCahrt03" Grid.Row="4" Margin="0,10,0,0">
  174. <Grid>
  175. <Grid.RowDefinitions>
  176. <RowDefinition Height="40"/>
  177. <RowDefinition Height="40"/>
  178. <RowDefinition Height="40"/>
  179. <RowDefinition Height="40"/>
  180. <RowDefinition Height="40"/>
  181. <RowDefinition Height="40"/>
  182. </Grid.RowDefinitions>
  183. <Grid.ColumnDefinitions>
  184. <ColumnDefinition Width="40"/>
  185. <ColumnDefinition/>
  186. <ColumnDefinition/>
  187. <ColumnDefinition/>
  188. <ColumnDefinition/>
  189. <ColumnDefinition/>
  190. <ColumnDefinition/>
  191. </Grid.ColumnDefinitions>
  192. <Grid Grid.Row="1" Grid.ColumnSpan="7" Background="#661a2e3c" VerticalAlignment="Center" Height="38"></Grid>
  193. <Grid Grid.Row="3" Grid.ColumnSpan="7" Background="#661a2e3c" VerticalAlignment="Center" Height="38"></Grid>
  194. <Grid Grid.Row="5" Grid.ColumnSpan="7" Background="#661a2e3c" VerticalAlignment="Center" Height="38"></Grid>
  195. <TextBlock Text="等级" Grid.Column="0" Grid.Row="0" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" FontWeight="Bold"/>
  196. <TextBlock Text="符号" Grid.Column="1" Grid.Row="0" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" FontWeight="Bold"/>
  197. <TextBlock Tag="ZB" x:Name="AttrLSY" Text="√&#x000A;硫酸盐&#x000A;(mg/L)" Grid.Column="2" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" FontWeight="Bold" TextAlignment="Center" Cursor="Hand" ToolTip="显示/隐藏"/>
  198. <TextBlock Tag="ZB" x:Name="AttrLHW" Text="氯化物&#x000A;(mg/L)" Grid.Column="3" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" FontWeight="Bold" TextAlignment="Center" Cursor="Hand" ToolTip="显示/隐藏"/>
  199. <TextBlock Tag="ZB" x:Name="AttrT" Text="铁(Fe)&#x000A;(mg/L)" Grid.Column="4" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" FontWeight="Bold" TextAlignment="Center" Cursor="Hand" ToolTip="显示/隐藏"/>
  200. <TextBlock Tag="ZB" x:Name="AttrXSY" Text="硝酸盐&#x000A;(以N计)&#x000A;(mg/L)" Grid.Column="5" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" FontWeight="Bold" TextAlignment="Center" Cursor="Hand" ToolTip="显示/隐藏"/>
  201. <TextBlock Tag="ZB" x:Name="AttrPH" Text="pH" Grid.Column="6" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" FontWeight="Bold" TextAlignment="Center" Cursor="Hand" ToolTip="显示/隐藏"/>
  202. <TextBlock Text="I" Foreground="White" Width="16" Height="16" Grid.Column="0" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  203. <TextBlock Text="II" Foreground="White" Width="16" Height="16" Grid.Column="0" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  204. <TextBlock Text="III" Foreground="White" Width="16" Height="16" Grid.Column="0" Grid.Row="3" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  205. <TextBlock Text="IV" Foreground="White" Width="16" Height="16" Grid.Column="0" Grid.Row="4" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  206. <TextBlock Text="V" Foreground="White" Width="16" Height="16" Grid.Column="0" Grid.Row="5" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  207. <Grid Width="16" Height="16" Background="Green" Grid.Column="1" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  208. <Grid Width="16" Height="16" Background="#ff8800" Grid.Column="1" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  209. <Grid Width="16" Height="16" Background="Gold" Grid.Column="1" Grid.Row="3" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  210. <Grid Width="16" Height="16" Background="#8888ff" Grid.Column="1" Grid.Row="4" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  211. <Grid Width="16" Height="16" Background="Red" Grid.Column="1" Grid.Row="5" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  212. <!--硫酸盐(mg/L)-->
  213. <TextBlock Text="≤50" Grid.Column="2" Grid.Row="1" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  214. <TextBlock Text="≤150" Grid.Column="2" Grid.Row="2" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  215. <TextBlock Text="≤250" Grid.Column="2" Grid.Row="3" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  216. <TextBlock Text="≤350" Grid.Column="2" Grid.Row="4" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  217. <TextBlock Text=">350" Grid.Column="2" Grid.Row="5" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  218. <!--氯化物(mg/L)-->
  219. <TextBlock Text="≤50" Grid.Column="3" Grid.Row="1" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  220. <TextBlock Text="≤150" Grid.Column="3" Grid.Row="2" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  221. <TextBlock Text="≤250" Grid.Column="3" Grid.Row="3" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  222. <TextBlock Text="≤350" Grid.Column="3" Grid.Row="4" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  223. <TextBlock Text=">350" Grid.Column="3" Grid.Row="5" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  224. <!--铁(Fe)(mg/L)-->
  225. <TextBlock Text="≤0.1" Grid.Column="4" Grid.Row="1" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  226. <TextBlock Text="≤0.2" Grid.Column="4" Grid.Row="2" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  227. <TextBlock Text="≤0.3" Grid.Column="4" Grid.Row="3" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  228. <TextBlock Text="≤1.5" Grid.Column="4" Grid.Row="4" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  229. <TextBlock Text=">1.5" Grid.Column="4" Grid.Row="5" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  230. <!--硝酸盐(以N计)(mg/L)-->
  231. <TextBlock Text="≤2.0" Grid.Column="5" Grid.Row="1" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  232. <TextBlock Text="≤5.0" Grid.Column="5" Grid.Row="2" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  233. <TextBlock Text="≤20" Grid.Column="5" Grid.Row="3" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  234. <TextBlock Text="≤30" Grid.Column="5" Grid.Row="4" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  235. <TextBlock Text=">30" Grid.Column="5" Grid.Row="5" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  236. <!--pH-->
  237. <TextBlock Text="-" Grid.Column="6" Grid.Row="1" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  238. <TextBlock Text="6.5~8.5" Grid.Column="6" Grid.Row="2" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  239. <TextBlock Text="-" Grid.Column="6" Grid.Row="3" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  240. <TextBlock Text="5.5~6.5&#x000A; 8.5~9" Grid.Column="6" Grid.Row="4" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  241. <TextBlock Text="&lt;5.5&#x000A;>9" Grid.Column="6" Grid.Row="5" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  242. <Border BorderThickness="0 ,1,0,1"/>
  243. </Grid>
  244. </Grid>
  245. </Grid>
  246. <DockPanel x:Name="m_PanelRight" Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="1" Grid.RowSpan="11" HorizontalAlignment="Left" Margin="20,0,0,0">
  247. <StackPanel Background="Transparent" >
  248. <Grid Height="50" Width="50">
  249. <Ellipse Tag="TYPES" x:Name="m_EllipseDL" Fill="#01FFFFFF" Stroke="Transparent" Height="50" Width="50" HorizontalAlignment="Left"></Ellipse>
  250. <!--<TextBlock x:Name="m_TextBlockDL" IsHitTestVisible="False" Text="电力" TextAlignment="Center" VerticalAlignment="Bottom" HorizontalAlignment="Center" Foreground="Gray" FontSize="14" Margin="0,0,0,-14"></TextBlock>-->
  251. </Grid>
  252. <Grid Height="15" Width="60"></Grid>
  253. <Grid Height="50" Width="50">
  254. <Ellipse Tag="TYPES" x:Name="m_EllipseDX" Fill="#01FFFFFF" Stroke="Transparent" Height="50" Width="50" HorizontalAlignment="Left"></Ellipse>
  255. <!--<TextBlock x:Name="m_TextBlockDX" IsHitTestVisible="False" Text="电信" TextAlignment="Center" VerticalAlignment="Bottom" HorizontalAlignment="Center" Foreground="Gray" FontSize="14" Margin="0,0,0,-14"></TextBlock>-->
  256. </Grid>
  257. <Grid Height="15" Width="60"></Grid>
  258. <Grid Height="50" Width="50">
  259. <Ellipse Tag="TYPES" x:Name="m_EllipseJS" Fill="#01FFFFFF" Stroke="Transparent" Height="50" Width="50" HorizontalAlignment="Left"></Ellipse>
  260. <!--<TextBlock x:Name="m_TextBlockJS" IsHitTestVisible="False" Text="给水" TextAlignment="Center" VerticalAlignment="Bottom" HorizontalAlignment="Center" Foreground="Gray" FontSize="14" Margin="0,0,0,-14"></TextBlock>-->
  261. </Grid>
  262. <Grid Height="10" Width="60"></Grid>
  263. <Grid Height="50" Width="50">
  264. <Ellipse Tag="TYPES" x:Name="m_EllipsePS" Fill="#01FFFFFF" Stroke="Transparent" Height="50" Width="50" HorizontalAlignment="Left"></Ellipse>
  265. <!--<TextBlock x:Name="m_TextBlockPS" IsHitTestVisible="False" Text="排水" TextAlignment="Center" VerticalAlignment="Bottom" HorizontalAlignment="Center" Foreground="Gray" FontSize="14" Margin="0,0,0,-14"></TextBlock>-->
  266. </Grid>
  267. <Grid Height="15" Width="60"></Grid>
  268. <Grid Height="50" Width="50">
  269. <Ellipse Tag="TYPES" x:Name="m_EllipseRQ" Fill="#01FFFFFF" Stroke="Transparent" Height="50" Width="50" HorizontalAlignment="Left"></Ellipse>
  270. <!--<TextBlock x:Name="m_TextBlockRQ" IsHitTestVisible="False" Text="燃气" TextAlignment="Center" VerticalAlignment="Bottom" HorizontalAlignment="Center" Foreground="Gray" FontSize="14" Margin="0,0,0,-14"></TextBlock>-->
  271. </Grid>
  272. <Grid Height="15" Width="60"></Grid>
  273. <Grid Height="50" Width="50">
  274. <Ellipse Tag="TYPES" x:Name="m_EllipseRL" Fill="#01FFFFFF" Stroke="Transparent" Height="50" Width="50" HorizontalAlignment="Left"></Ellipse>
  275. <!--<TextBlock x:Name="m_TextBlockRL" IsHitTestVisible="False" Text="热力" TextAlignment="Center" VerticalAlignment="Bottom" HorizontalAlignment="Center" Foreground="Gray" FontSize="14" Margin="0,0,0,-14"></TextBlock>-->
  276. </Grid>
  277. <Grid Height="15" Width="60"></Grid>
  278. <Grid Height="50" Width="50">
  279. <Ellipse Tag="TYPES" x:Name="m_EllipseGY" Fill="#01FFFFFF" Stroke="Transparent" Height="50" Width="50" HorizontalAlignment="Left"></Ellipse>
  280. <!--<TextBlock x:Name="m_TextBlockGY" IsHitTestVisible="False" Text="工业" TextAlignment="Center" VerticalAlignment="Bottom" HorizontalAlignment="Center" Foreground="Gray" FontSize="14" Margin="0,0,0,-14"></TextBlock>-->
  281. </Grid>
  282. <Grid Height="15" Width="60"></Grid>
  283. <Grid Height="50" Width="50">
  284. <Ellipse Tag="TYPES" x:Name="m_EllipseZH" Fill="#01FFFFFF" Stroke="Transparent" Height="50" Width="50" HorizontalAlignment="Left"></Ellipse>
  285. <!--<TextBlock x:Name="m_TextBlockZH" IsHitTestVisible="False" Text="综合" TextAlignment="Center" VerticalAlignment="Bottom" HorizontalAlignment="Center" Foreground="Gray" FontSize="14" Margin="0,0,0,-14"></TextBlock>-->
  286. </Grid>
  287. <Grid Height="15" Width="60"></Grid>
  288. <Grid Height="50" Width="50">
  289. <Ellipse Tag="TYPES" x:Name="m_EllipseAll" Fill="#01FFFFFF" Stroke="Transparent" Height="50" Width="50" HorizontalAlignment="Left"></Ellipse>
  290. <!--<TextBlock x:Name="m_TextBlockAll" IsHitTestVisible="False" Text="全部" TextAlignment="Center" VerticalAlignment="Bottom" HorizontalAlignment="Center" Foreground="Gray" FontSize="14" Margin="0,0,0,-14"></TextBlock>-->
  291. </Grid>
  292. </StackPanel>
  293. </DockPanel>
  294. <Grid x:Name="m_InfoGrid" Visibility="Hidden" Grid.Column="2" Grid.Row="1" Grid.ColumnSpan="1" Grid.RowSpan="4" Margin="0,0,0,10">
  295. <Border x:Name="m_InfoBorder" CornerRadius="20" Background="#55000000" Margin="10">
  296. <StackPanel>
  297. <Label Name="m_InfoTitle" Content="信息" Foreground="White" FontWeight="Bold" HorizontalContentAlignment="Center"></Label>
  298. <Grid Height="2" Background="Gray" Margin="20,0,20,0"></Grid>
  299. <ScrollViewer x:Name="InfoScrollViewer" VerticalScrollBarVisibility="Hidden" HorizontalScrollBarVisibility="Hidden" Margin="5,5,10,5">
  300. <ScrollViewer.Content>
  301. <StackPanel x:Name="m_InfoItems" Margin="5,5,5,5"></StackPanel>
  302. </ScrollViewer.Content>
  303. </ScrollViewer>
  304. </StackPanel>
  305. </Border>
  306. </Grid>
  307. <Grid Tag="BTN" Height="30" Width="30" Grid.Row="0" Grid.Column="6" Grid.ColumnSpan="2" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,5,5,0" Opacity="0.2">
  308. <Ellipse Stroke="Transparent" Height="30" Width="30" HorizontalAlignment="Left"></Ellipse>
  309. <Image x:Name="m_ImageExist" ToolTip="退出大屏" VerticalAlignment="Center" HorizontalAlignment="Center" Cursor="Hand"></Image>
  310. </Grid>
  311. <Grid Panel.ZIndex="2001" Tag="BTN" Grid.Row="0" Grid.Column="6" Grid.ColumnSpan="2" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="0,5,65,0" Opacity="0.9">
  312. <Grid.RowDefinitions>
  313. <RowDefinition/>
  314. <RowDefinition Height="2"/>
  315. <RowDefinition/>
  316. </Grid.RowDefinitions>
  317. <Label Grid.Row="0" HorizontalAlignment="Right" VerticalContentAlignment="Bottom" Name="m_TimeLabel" FontSize="18" Foreground="White" FontFamily="Microsoft YaHei Bold" Margin="0,0,0,-5">下午 15:30:30</Label>
  318. <Line Grid.Row="1" X1="0" Y1="0" X2="120" Y2="0" Stroke="#33eeeeee" VerticalAlignment="Bottom" StrokeThickness="1" HorizontalAlignment="Right" Margin="0,0,10,0"/>
  319. <Label Grid.Row="2" HorizontalAlignment="Right" VerticalContentAlignment="Top" Name="m_DateLabel" FontSize="16" Foreground="White" FontFamily="Microsoft YaHei">2021 07 16</Label>
  320. </Grid>
  321. <Grid Tag="BTN" Height="50" Width="50" Grid.Row="13" Grid.Column="6" Grid.ColumnSpan="2" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,25,10" Opacity="0.6">
  322. <Ellipse Stroke="Transparent" Height="20" Width="20" HorizontalAlignment="Left"></Ellipse>
  323. <Image x:Name="m_ImageHome" ToolTip="显示全图" VerticalAlignment="Center" HorizontalAlignment="Center" Cursor="Hand"></Image>
  324. </Grid>
  325. <Grid Tag="BTN" Height="50" Width="50" Grid.Row="13" Grid.Column="6" Grid.ColumnSpan="2" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,85,10" Opacity="0.6">
  326. <Ellipse Stroke="Transparent" Height="20" Width="20" HorizontalAlignment="Left"></Ellipse>
  327. <Image x:Name="m_ImageInfo" ToolTip="信息查询" VerticalAlignment="Center" HorizontalAlignment="Center" Cursor="Hand"></Image>
  328. </Grid>
  329. <Grid Tag="BTN" Height="50" Width="50" Grid.Row="13" Grid.Column="6" Grid.ColumnSpan="2" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,145,10" Opacity="0.6">
  330. <Ellipse Stroke="Transparent" Height="20" Width="20" HorizontalAlignment="Left"></Ellipse>
  331. <Image x:Name="m_ImagePan" ToolTip="漫游" VerticalAlignment="Center" HorizontalAlignment="Center" Cursor="Hand"></Image>
  332. </Grid>
  333. <Grid Tag="BTN" Height="50" Width="50" Grid.Row="13" Grid.Column="6" Grid.ColumnSpan="2" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,205,10" Opacity="0.6">
  334. <Ellipse Stroke="Transparent" Height="20" Width="20" HorizontalAlignment="Left"></Ellipse>
  335. <Image x:Name="m_ImageTerrain" ToolTip="地形" VerticalAlignment="Center" HorizontalAlignment="Center" Cursor="Hand"></Image>
  336. </Grid>
  337. </Grid>
  338. </Grid>
  339. </Window>