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

19 lines
443 B

  1. using BPA.Helper;
  2. using System;
  3. using System.Windows;
  4. namespace BPASmartClient.DosingSystem.View
  5. {
  6. /// <summary>
  7. /// NewOutletView.xaml 的交互逻辑
  8. /// </summary>
  9. public partial class NewOutletView : Window
  10. {
  11. public NewOutletView()
  12. {
  13. InitializeComponent();
  14. ActionManage.GetInstance.Register(new Action(() => { this.Close(); }), "NewOutletViewClose", true);
  15. }
  16. }
  17. }