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

46 行
1.1 KiB

  1. using BPA.Helper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. using System.Windows.Documents;
  11. using System.Windows.Input;
  12. using System.Windows.Media;
  13. using System.Windows.Media.Imaging;
  14. using System.Windows.Shapes;
  15. namespace BPASmart.ConfigurationSoftware
  16. {
  17. /// <summary>
  18. /// NewPageView.xaml 的交互逻辑
  19. /// </summary>
  20. public partial class NewPageView : Window
  21. {
  22. public NewPageView()
  23. {
  24. InitializeComponent();
  25. }
  26. private void Button_Click(object sender, RoutedEventArgs e)
  27. {
  28. this.DialogResult = false;
  29. this.Close();
  30. }
  31. private void Button_Click_1(object sender, RoutedEventArgs e)
  32. {
  33. if (this.pageName.Text.Trim().Length > 0)
  34. {
  35. this.DialogResult = true;
  36. ActionManage.GetInstance.Send("PageName", this.pageName.Text);
  37. this.Close();
  38. }
  39. }
  40. }
  41. }