F_PM_0103_2.cs 751 B

12345678910111213141516171819202122232425262728293031323334353637
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Data;
  5. using System.Reflection;
  6. using System.Windows.Forms;
  7. using Dongke.IBOSS.PRD.Client.CommonModule;
  8. using Dongke.WinForm.Controls;
  9. namespace Dongke.IBOSS.PRD.Client.PMModule
  10. {
  11. public partial class F_PM_0103_2 : FormMultiple
  12. {
  13. public F_PM_0103_2()
  14. {
  15. InitializeComponent();
  16. }
  17. public string ERROR_TEXT
  18. {
  19. get
  20. {
  21. return this.txtBarCodes.Text;
  22. }
  23. set
  24. {
  25. this.txtBarCodes.Text = value;
  26. }
  27. }
  28. private void tsbtnClose_Click(object sender, System.EventArgs e)
  29. {
  30. this.Close();
  31. }
  32. }
  33. }