using System; using System.Collections.Generic; using System.Data; using System.Reflection; using System.Windows.Forms; using Dongke.IBOSS.PRD.Client.CommonModule; using Dongke.WinForm.Controls; namespace Dongke.IBOSS.PRD.Client.PMModule { public partial class F_PM_0103_2 : FormMultiple { public F_PM_0103_2() { InitializeComponent(); } public string ERROR_TEXT { get { return this.txtBarCodes.Text; } set { this.txtBarCodes.Text = value; } } private void tsbtnClose_Click(object sender, System.EventArgs e) { this.Close(); } } }