终端一体化运控平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

19 行
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. }