using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using CoreFS.CA06; using Infragistics.Win.UltraWinGrid; using System.Text.RegularExpressions; using System.Collections; using Infragistics.Win; using Infragistics.Win.UltraWinEditors; namespace Core.LZMes.Client.QCM { public partial class QCM030607 : FrmBase { public string _memo = ""; public QCM030607() { InitializeComponent(); } private void btnOK_Click(object sender, EventArgs e) { _memo = this.textBox1.Text; this.DialogResult = DialogResult.OK; this.Close(); } } }