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

401 lines
29 KiB

  1. <UserControl x:Class="BPASmartClient.ScreenLib.ScreenMorksControl"
  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. xmlns:local="clr-namespace:BPASmartClient.ScreenLib"
  7. xmlns:wv2="clr-namespace:Microsoft.Web.WebView2.Wpf;assembly=Microsoft.Web.WebView2.Wpf"
  8. xmlns:con="clr-namespace:BPA.CustomResource.UserControls;assembly=BPA.CustomResource"
  9. mc:Ignorable="d"
  10. d:DesignHeight="1080" d:DesignWidth="1920">
  11. <UserControl.Resources>
  12. <ResourceDictionary>
  13. <ResourceDictionary.MergedDictionaries>
  14. <ResourceDictionary Source="/BPA.CustomResource;component/Themes/ProlineStyle.xaml" />
  15. </ResourceDictionary.MergedDictionaries>
  16. </ResourceDictionary>
  17. </UserControl.Resources>
  18. <Grid>
  19. <Grid.ColumnDefinitions>
  20. <ColumnDefinition Width="*"/>
  21. <ColumnDefinition Width="2*"/>
  22. <ColumnDefinition Width="*"/>
  23. </Grid.ColumnDefinitions>
  24. <StackPanel Margin="0,10,0,0">
  25. <GroupBox Grid.Row="0" Margin="10,0,10,0" Height="160" Width="450" Style="{DynamicResource fromNoTitle}" Tag="Start">
  26. <Grid>
  27. <Grid.ColumnDefinitions>
  28. <ColumnDefinition/>
  29. <ColumnDefinition/>
  30. </Grid.ColumnDefinitions>
  31. <Border Grid.ColumnSpan="2" Background="{DynamicResource 竖线}" Height="100" Width="2"></Border>
  32. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  33. <TextBlock HorizontalAlignment="Center" FontSize="42" Text="{Binding ViewData.IsRun,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}">
  34. <TextBlock.Style>
  35. <Style TargetType="TextBlock">
  36. <Setter Property="Foreground" Value="Lime"></Setter>
  37. <Style.Triggers>
  38. <Trigger Property="Text" Value="停止">
  39. <Setter Property="Foreground" Value="Red"/>
  40. </Trigger>
  41. </Style.Triggers>
  42. </Style>
  43. </TextBlock.Style>
  44. </TextBlock>
  45. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">设备状态</TextBlock>
  46. </StackPanel>
  47. <StackPanel Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center">
  48. <TextBlock HorizontalAlignment="Center" FontSize="42" Text="{Binding ViewData.WorkStatus,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}">
  49. <TextBlock.Style>
  50. <Style TargetType="TextBlock">
  51. <Setter Property="Foreground" Value="Lime"></Setter>
  52. <Style.Triggers>
  53. <Trigger Property="Text" Value="待机">
  54. <Setter Property="Foreground" Value="Yellow"/>
  55. </Trigger>
  56. <Trigger Property="Text" Value="故障">
  57. <Setter Property="Foreground" Value="Red"/>
  58. </Trigger>
  59. <Trigger Property="Text" Value="停止">
  60. <Setter Property="Foreground" Value="Red"/>
  61. </Trigger>
  62. </Style.Triggers>
  63. </Style>
  64. </TextBlock.Style>
  65. </TextBlock>
  66. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">工作状态</TextBlock>
  67. </StackPanel>
  68. </Grid>
  69. </GroupBox>
  70. <GroupBox Margin="0,20,10,0" Height="780" Width="450" Header="待制作订单列表" Style="{DynamicResource from}" Tag="Start">
  71. <DataGrid Margin="0,10,0,0" ItemsSource="{Binding OrderMakeList,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}">
  72. <DataGrid.Columns>
  73. <DataGridTemplateColumn Width="60">
  74. <DataGridTemplateColumn.Header>
  75. <TextBlock Text="订单号" FontSize="18" Foreground="White"/>
  76. </DataGridTemplateColumn.Header>
  77. <DataGridTemplateColumn.CellTemplate>
  78. <DataTemplate>
  79. <TextBlock Margin="0,5,0,5" Text="{Binding SortNum,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" Foreground="{Binding foreground,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" FontSize="20" VerticalAlignment="Bottom" HorizontalAlignment="Center"/>
  80. </DataTemplate>
  81. </DataGridTemplateColumn.CellTemplate>
  82. </DataGridTemplateColumn>
  83. <DataGridTemplateColumn Width="120">
  84. <DataGridTemplateColumn.Header>
  85. <TextBlock Text="商品名称" FontSize="18" Foreground="White"/>
  86. </DataGridTemplateColumn.Header>
  87. <DataGridTemplateColumn.CellTemplate>
  88. <DataTemplate>
  89. <TextBlock Margin="0,5,0,5" Text="{Binding GoodName,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" Foreground="{Binding foreground,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  90. </DataTemplate>
  91. </DataGridTemplateColumn.CellTemplate>
  92. </DataGridTemplateColumn>
  93. <DataGridTemplateColumn Width="160">
  94. <DataGridTemplateColumn.Header>
  95. <TextBlock Text="开始时间" FontSize="18" Foreground="White"/>
  96. </DataGridTemplateColumn.Header>
  97. <DataGridTemplateColumn.CellTemplate>
  98. <DataTemplate>
  99. <TextBlock Margin="0,5,0,5" Text="{Binding StartTime,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" Foreground="{Binding foreground,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  100. </DataTemplate>
  101. </DataGridTemplateColumn.CellTemplate>
  102. </DataGridTemplateColumn>
  103. <DataGridTemplateColumn Width="80">
  104. <DataGridTemplateColumn.Header>
  105. <TextBlock Text="状态" FontSize="18" Foreground="White"/>
  106. </DataGridTemplateColumn.Header>
  107. <DataGridTemplateColumn.CellTemplate>
  108. <DataTemplate>
  109. <TextBlock Margin="0,5,0,5" Text="{Binding MakeStatus,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" Foreground="{Binding foreground,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  110. </DataTemplate>
  111. </DataGridTemplateColumn.CellTemplate>
  112. </DataGridTemplateColumn>
  113. </DataGrid.Columns>
  114. </DataGrid>
  115. </GroupBox>
  116. </StackPanel>
  117. <StackPanel Grid.Column="1" MouseLeftButtonDown="StackPanel_MouseLeftButtonDown" VerticalAlignment="Bottom" Margin="0,0,0,10">
  118. <GroupBox x:Name="guanggao" Height="600" Width="950" Margin="0,10,0,20" Header="广告区域" HorizontalAlignment="Center" VerticalAlignment="Top" Style="{DynamicResource from}" Tag="Start">
  119. <Grid>
  120. <wv2:WebView2 Name="webView" />
  121. </Grid>
  122. </GroupBox>
  123. <Grid x:Name="diqiu" Height="600" Width="950" Margin="0,10,0,20" > <Image Style="{DynamicResource imagezhu}"></Image> <Image Style="{DynamicResource image中1}" Margin="0,400,0,0"></Image> <GroupBox Margin="600,100,0,500" Header="{Binding ViewData.FailuresCount,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" Style="{DynamicResource GroupStyle圆形}" Tag="累计故障数" Content="次" Width="100"/> <GroupBox Margin="600,400,0,0" Header="0" Style="{DynamicResource GroupStyle圆形}" Tag="故障次数" Content="次" Width="160"/> <GroupBox Margin="-500,100,0,0" Header="{Binding ViewData.MorkS_OrderCount,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" Style="{DynamicResource GroupStyle圆形}" Tag="日总接待人数" Content="人" Width="160"/> </Grid>
  124. <GroupBox Margin="0,0,0,0" Height="340" Width="950" Header="信息通知区域" Style="{DynamicResource from}">
  125. <DataGrid Margin="10,10,10,0" ItemsSource="{Binding ViewData.Alarm,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}">
  126. <DataGrid.Columns>
  127. <DataGridTemplateColumn Width="250">
  128. <DataGridTemplateColumn.Header>
  129. <TextBlock Text="信息时间" Foreground="White"/>
  130. </DataGridTemplateColumn.Header>
  131. <DataGridTemplateColumn.CellTemplate>
  132. <DataTemplate>
  133. <TextBlock Margin="0,5,0,5" Text="{Binding AlarmTime}" Foreground="#a70909" FontSize="16" HorizontalAlignment="Center"/>
  134. </DataTemplate>
  135. </DataGridTemplateColumn.CellTemplate>
  136. </DataGridTemplateColumn>
  137. <DataGridTemplateColumn Width="*">
  138. <DataGridTemplateColumn.Header>
  139. <TextBlock Text="详细描述" Foreground="White"/>
  140. </DataGridTemplateColumn.Header>
  141. <DataGridTemplateColumn.CellTemplate>
  142. <DataTemplate>
  143. <TextBlock Margin="0,5,0,5" Text="{Binding AlarmMs}" Foreground="#a70909" FontSize="16" HorizontalAlignment="Center"/>
  144. </DataTemplate>
  145. </DataGridTemplateColumn.CellTemplate>
  146. </DataGridTemplateColumn>
  147. </DataGrid.Columns>
  148. </DataGrid>
  149. </GroupBox>
  150. </StackPanel>
  151. <StackPanel Grid.Column="2" Margin="0,10,0,0">
  152. <GroupBox Grid.Column="2" Margin="0,0,10,0" Height="160" HorizontalAlignment="Right" Width="450" Style="{DynamicResource fromNoTitle}" Tag="Start">
  153. <Grid>
  154. <Grid.ColumnDefinitions>
  155. <ColumnDefinition/>
  156. <ColumnDefinition/>
  157. </Grid.ColumnDefinitions>
  158. <Border Grid.ColumnSpan="2" Background="{DynamicResource 竖线}" Height="100" Width="2"></Border>
  159. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  160. <TextBlock Style="{DynamicResource 数码管Text}" FontSize="52" Foreground="#FFD2C106" Text="{Binding ViewData.MorkS_OrderCount,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"></TextBlock>
  161. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">今日订单数</TextBlock>
  162. </StackPanel>
  163. <StackPanel Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center">
  164. <TextBlock HorizontalAlignment="Center" FontSize="42" Text="{Binding ViewData.RobotStatu,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}">
  165. <TextBlock.Style>
  166. <Style TargetType="TextBlock">
  167. <Setter Property="Foreground" Value="Lime"></Setter>
  168. <Style.Triggers>
  169. <Trigger Property="Text" Value="待机">
  170. <Setter Property="Foreground" Value="Yellow"/>
  171. </Trigger>
  172. <Trigger Property="Text" Value="故障">
  173. <Setter Property="Foreground" Value="Red"/>
  174. </Trigger>
  175. <Trigger Property="Text" Value="停止">
  176. <Setter Property="Foreground" Value="Red"/>
  177. </Trigger>
  178. </Style.Triggers>
  179. </Style>
  180. </TextBlock.Style>
  181. </TextBlock>
  182. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">机器人状态</TextBlock>
  183. </StackPanel>
  184. </Grid>
  185. </GroupBox>
  186. <GroupBox Margin="10,20,0,0" Height="780" Width="450" Header="设备当前状态" Style="{DynamicResource from}" Tag="Start">
  187. <StackPanel>
  188. <GroupBox Margin="0,10,0,0" Header="煮面炉状态监控"></GroupBox>
  189. <Grid Height="100" Margin="0,10,0,0">
  190. <Grid.ColumnDefinitions>
  191. <ColumnDefinition/>
  192. <ColumnDefinition/>
  193. </Grid.ColumnDefinitions>
  194. <Border Grid.ColumnSpan="2" Background="{DynamicResource 竖线}" Height="100" Width="2"></Border>
  195. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  196. <TextBlock HorizontalAlignment="Center" FontSize="42" >
  197. <TextBlock.Style>
  198. <Style TargetType="TextBlock">
  199. <Setter Property="Foreground" Value="#FFD2C106"></Setter>
  200. <Setter Property="Text" Value="空闲"></Setter>
  201. <Style.Triggers>
  202. <DataTrigger Binding="{Binding ViewData.Morks_NoodleUpOrDown[0]}" Value="true">
  203. <Setter Property="Foreground" Value="Lime"/>
  204. <Setter Property="Text" Value="煮面"></Setter>
  205. </DataTrigger>
  206. </Style.Triggers>
  207. </Style>
  208. </TextBlock.Style>
  209. </TextBlock>
  210. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">煮面炉1号</TextBlock>
  211. </StackPanel>
  212. <StackPanel Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center">
  213. <TextBlock HorizontalAlignment="Center" FontSize="42" >
  214. <TextBlock.Style>
  215. <Style TargetType="TextBlock">
  216. <Setter Property="Foreground" Value="#FFD2C106"></Setter>
  217. <Setter Property="Text" Value="空闲"></Setter>
  218. <Style.Triggers>
  219. <DataTrigger Binding="{Binding ViewData.Morks_NoodleUpOrDown[1]}" Value="true">
  220. <Setter Property="Foreground" Value="Lime"/>
  221. <Setter Property="Text" Value="煮面"></Setter>
  222. </DataTrigger>
  223. </Style.Triggers>
  224. </Style>
  225. </TextBlock.Style>
  226. </TextBlock>
  227. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">煮面炉2号</TextBlock>
  228. </StackPanel>
  229. </Grid>
  230. <Grid Height="100" Margin="0,10,0,0" >
  231. <Grid.ColumnDefinitions>
  232. <ColumnDefinition/>
  233. <ColumnDefinition/>
  234. </Grid.ColumnDefinitions>
  235. <Border Grid.ColumnSpan="2" Background="{DynamicResource 竖线}" Height="100" Width="2"></Border>
  236. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  237. <TextBlock HorizontalAlignment="Center" FontSize="42" >
  238. <TextBlock.Style>
  239. <Style TargetType="TextBlock">
  240. <Setter Property="Foreground" Value="#FFD2C106"></Setter>
  241. <Setter Property="Text" Value="空闲"></Setter>
  242. <Style.Triggers>
  243. <DataTrigger Binding="{Binding ViewData.Morks_NoodleUpOrDown[2]}" Value="true">
  244. <Setter Property="Foreground" Value="Lime"/>
  245. <Setter Property="Text" Value="煮面"></Setter>
  246. </DataTrigger>
  247. </Style.Triggers>
  248. </Style>
  249. </TextBlock.Style>
  250. </TextBlock>
  251. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">煮面炉3号</TextBlock>
  252. </StackPanel>
  253. <StackPanel Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center">
  254. <TextBlock HorizontalAlignment="Center" FontSize="42" >
  255. <TextBlock.Style>
  256. <Style TargetType="TextBlock">
  257. <Setter Property="Foreground" Value="#FFD2C106"></Setter>
  258. <Setter Property="Text" Value="空闲"></Setter>
  259. <Style.Triggers>
  260. <DataTrigger Binding="{Binding ViewData.Morks_NoodleUpOrDown[3]}" Value="true">
  261. <Setter Property="Foreground" Value="Lime"/>
  262. <Setter Property="Text" Value="煮面"></Setter>
  263. </DataTrigger>
  264. </Style.Triggers>
  265. </Style>
  266. </TextBlock.Style>
  267. </TextBlock>
  268. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">煮面炉4号</TextBlock>
  269. </StackPanel>
  270. </Grid>
  271. <Grid Height="100" Margin="0,10,0,0">
  272. <Grid.ColumnDefinitions>
  273. <ColumnDefinition/>
  274. <ColumnDefinition/>
  275. </Grid.ColumnDefinitions>
  276. <Border Grid.ColumnSpan="2" Background="{DynamicResource 竖线}" Height="100" Width="2"></Border>
  277. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  278. <TextBlock HorizontalAlignment="Center" FontSize="42" >
  279. <TextBlock.Style>
  280. <Style TargetType="TextBlock">
  281. <Setter Property="Foreground" Value="#FFD2C106"></Setter>
  282. <Setter Property="Text" Value="空闲"></Setter>
  283. <Style.Triggers>
  284. <DataTrigger Binding="{Binding ViewData.Morks_NoodleUpOrDown[4]}" Value="true">
  285. <Setter Property="Foreground" Value="Lime"/>
  286. <Setter Property="Text" Value="煮面"></Setter>
  287. </DataTrigger>
  288. </Style.Triggers>
  289. </Style>
  290. </TextBlock.Style>
  291. </TextBlock>
  292. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">煮面炉5号</TextBlock>
  293. </StackPanel>
  294. <StackPanel Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center">
  295. <TextBlock HorizontalAlignment="Center" FontSize="42" >
  296. <TextBlock.Style>
  297. <Style TargetType="TextBlock">
  298. <Setter Property="Foreground" Value="#FFD2C106"></Setter>
  299. <Setter Property="Text" Value="空闲"></Setter>
  300. <Style.Triggers>
  301. <DataTrigger Binding="{Binding ViewData.Morks_NoodleUpOrDown[5]}" Value="true">
  302. <Setter Property="Foreground" Value="Lime"/>
  303. <Setter Property="Text" Value="煮面"></Setter>
  304. </DataTrigger>
  305. </Style.Triggers>
  306. </Style>
  307. </TextBlock.Style>
  308. </TextBlock>
  309. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">煮面炉6号</TextBlock>
  310. </StackPanel>
  311. </Grid>
  312. <GroupBox Margin="0,40,0,0" Header="其他状态检测"></GroupBox>
  313. <Grid Height="100" Margin="0,10,0,0">
  314. <Grid.ColumnDefinitions>
  315. <ColumnDefinition/>
  316. <ColumnDefinition/>
  317. </Grid.ColumnDefinitions>
  318. <Border Grid.ColumnSpan="2" Background="{DynamicResource 竖线}" Height="100" Width="2"></Border>
  319. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  320. <TextBlock HorizontalAlignment="Center" FontSize="42" >
  321. <TextBlock.Style>
  322. <Style TargetType="TextBlock">
  323. <Setter Property="Foreground" Value="#a70909"></Setter>
  324. <Setter Property="Text" Value="加热中"></Setter>
  325. <Style.Triggers>
  326. <DataTrigger Binding="{Binding ViewData.MorkS_Temp}" Value="true">
  327. <Setter Property="Foreground" Value="Lime"/>
  328. <Setter Property="Text" Value="100°C"></Setter>
  329. </DataTrigger>
  330. </Style.Triggers>
  331. </Style>
  332. </TextBlock.Style>
  333. </TextBlock>
  334. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">温度状态</TextBlock>
  335. </StackPanel>
  336. <StackPanel Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center">
  337. <TextBlock HorizontalAlignment="Center" FontSize="42" >
  338. <TextBlock.Style>
  339. <Style TargetType="TextBlock">
  340. <Setter Property="Foreground" Value="#a70909"></Setter>
  341. <Setter Property="Text" Value="缺碗"></Setter>
  342. <Style.Triggers>
  343. <DataTrigger Binding="{Binding ViewData.MorkS_NoBowMeas1}" Value="true">
  344. <Setter Property="Foreground" Value="Lime"/>
  345. <Setter Property="Text" Value="充足"></Setter>
  346. </DataTrigger>
  347. <DataTrigger Binding="{Binding ViewData.MorkS_NoBowMeas1}" Value="false">
  348. <Setter Property="Foreground" Value="#a70909"/>
  349. <Setter Property="Text" Value="缺大碗"></Setter>
  350. </DataTrigger>
  351. <DataTrigger Binding="{Binding ViewData.MorkS_NoBowMeas2}" Value="false">
  352. <Setter Property="Foreground" Value="#a70909"/>
  353. <Setter Property="Text" Value="缺小碗"></Setter>
  354. </DataTrigger>
  355. </Style.Triggers>
  356. </Style>
  357. </TextBlock.Style>
  358. </TextBlock>
  359. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">缺碗检测</TextBlock>
  360. </StackPanel>
  361. </Grid>
  362. <Grid Height="100" Margin="0,10,0,0">
  363. <Grid.ColumnDefinitions>
  364. <ColumnDefinition/>
  365. <ColumnDefinition/>
  366. </Grid.ColumnDefinitions>
  367. <Border Grid.ColumnSpan="2" Background="{DynamicResource 竖线}" Height="100" Width="2"></Border>
  368. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  369. <TextBlock HorizontalAlignment="Center" FontSize="42" Text="{Binding ViewData.MorkS_BinLocation,StringFormat={}{0} 号}"/>
  370. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">料仓位置</TextBlock>
  371. </StackPanel>
  372. <StackPanel Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center">
  373. <TextBlock HorizontalAlignment="Center" FontSize="42" >
  374. <TextBlock.Style>
  375. <Style TargetType="TextBlock">
  376. <Setter Property="Foreground" Value="#a70909"></Setter>
  377. <Setter Property="Text" Value="缺面"></Setter>
  378. <Style.Triggers>
  379. <DataTrigger Binding="{Binding ViewData.Morks_SiloMeasDown}" Value="true">
  380. <Setter Property="Foreground" Value="Lime"/>
  381. <Setter Property="Text" Value="充足"></Setter>
  382. </DataTrigger>
  383. </Style.Triggers>
  384. </Style>
  385. </TextBlock.Style>
  386. </TextBlock>
  387. <TextBlock Style="{DynamicResource textms}" Margin="0,10,0,0">料仓物料检测</TextBlock>
  388. </StackPanel>
  389. </Grid>
  390. </StackPanel>
  391. </GroupBox>
  392. </StackPanel>
  393. </Grid>
  394. </UserControl>