QCM030616.cs 781 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using CoreFS.CA06;
  10. using Infragistics.Win.UltraWinGrid;
  11. using System.Text.RegularExpressions;
  12. using System.Collections;
  13. using Infragistics.Win;
  14. using Infragistics.Win.UltraWinEditors;
  15. namespace Core.LZMes.Client.QCM
  16. {
  17. public partial class QCM030616 : FrmBase
  18. {
  19. public string _memo = "";
  20. public QCM030616()
  21. {
  22. InitializeComponent();
  23. }
  24. private void btnOK_Click(object sender, EventArgs e)
  25. {
  26. _memo = this.textBox1.Text;
  27. this.DialogResult = DialogResult.OK;
  28. this.Close();
  29. }
  30. }
  31. }