dlgOrderAskDown.cs 907 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 Core.StlMes.Client.SaleComm;
  11. using Core.Mes.Client.Comm.Server;
  12. namespace Core.StlMes.Client.Plan.Order
  13. {
  14. public partial class dlgOrderAskDown : Form
  15. {
  16. OpeBase ob = new OpeBase();
  17. /// <summary>
  18. /// 客户编号
  19. /// </summary>
  20. private string pic = "";
  21. public dlgOrderAskDown()
  22. {
  23. InitializeComponent();
  24. }
  25. public dlgOrderAskDown(OpeBase ops,string pic)
  26. {
  27. this.ob = ops;
  28. this.pic = pic;
  29. InitializeComponent();
  30. }
  31. private void dlgOrderAskDown_Load(object sender, EventArgs e)
  32. {
  33. ctrlFileDown1.FilePath = pic;
  34. }
  35. }
  36. }