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

HardwareStatusView.xaml.cs 454 B

2 years ago
1234567891011121314151617
  1. using BPA.Helper;
  2. using System.Windows.Controls;
  3. namespace BPASmartClient.DosingSystem.View
  4. {
  5. /// <summary>
  6. /// HardwareStatusView.xaml 的交互逻辑
  7. /// </summary>
  8. public partial class HardwareStatusView : UserControl
  9. {
  10. public HardwareStatusView()
  11. {
  12. InitializeComponent();
  13. this.Unloaded += (o, e) => { TaskManage.GetInstance.StopTask("输送带料仓状态监控"); };
  14. }
  15. }
  16. }