锐腾搅拌上料功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
3.8 KiB

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using DevExpress.XtraEditors;
  9. using ICSSoft.Base.Config.AppConfig;
  10. using System.Data.Linq;
  11. using System.Linq;
  12. using ICSSoft.Base.Language.Tool;
  13. using System.Reflection;
  14. using ICSSoft.Base.Config.DBHelper;
  15. using ICSSoft.Base.ReferForm;
  16. using ICSSoft.Base.Report;
  17. using ICSSoft.Base.ReferForm.AppReferForm;
  18. using ICSSoft.Frame.Data.Entity;
  19. using ICSSoft.Frame.Data.BLL;
  20. namespace ICSSoft.Frame.APP
  21. {
  22. public partial class FormICSWareHouseLotMinus : DevExpress.XtraEditors.XtraForm
  23. {
  24. String guid = "";
  25. List<FormICSWareHouseLotInfoUIModel> listlotmodel;
  26. #region 构造函数
  27. public FormICSWareHouseLotMinus()
  28. {
  29. InitializeComponent();
  30. }
  31. public FormICSWareHouseLotMinus(List<FormICSWareHouseLotInfoUIModel> lotmodellist)
  32. {
  33. InitializeComponent();
  34. listlotmodel = lotmodellist;
  35. List<string> testlist = new List<string>();
  36. foreach (FormICSWareHouseLotInfoUIModel model in listlotmodel)
  37. {
  38. testlist.Add(model.LotNO);
  39. }
  40. txtLotNOlist.DataSource = testlist;
  41. }
  42. #endregion
  43. #region 关闭 退出
  44. private void btnClose_Click(object sender, EventArgs e)
  45. {
  46. this.Close();
  47. }
  48. #endregion
  49. #region 移动窗体
  50. private const int WM_NCHITTEST = 0x84;
  51. private const int HTCLIENT = 0x1;
  52. private const int HTCAPTION = 0x2;
  53. //首先必须了解Windows的消息传递机制,当有鼠标活动消息时,
  54. //系统发送WM_NCHITTEST 消息给窗体作为判断消息发生地的根据。 nchittest
  55. //假如你点击的是标题栏,窗体收到的消息值就是 HTCAPTION ,
  56. //同样地,若接受到的消息是 HTCLIENT,说明用户点击的是客户区,也就是鼠标消息发生在客户区。
  57. //重写窗体,使窗体可以不通过自带标题栏实现移动
  58. protected override void WndProc(ref Message m)
  59. {
  60. //当重载窗体的 WndProc 方法时,可以截获 WM_NCHITTEST 消息并改些该消息,
  61. //当判断鼠标事件发生在客户区时,改写改消息,发送 HTCAPTION 给窗体,
  62. //这样,窗体收到的消息就时 HTCAPTION ,在客户区通过鼠标来拖动窗体就如同通过标题栏来拖动一样。
  63. //注意:当你重载 WndProc 并改写鼠标事件后,整个窗体的鼠标事件也就随之改变了。
  64. switch (m.Msg)
  65. {
  66. case WM_NCHITTEST:
  67. base.WndProc(ref m);
  68. if ((int)m.Result == HTCLIENT)
  69. m.Result = (IntPtr)HTCAPTION;
  70. return;
  71. }
  72. //拦截双击标题栏、移动窗体的系统消息
  73. if (m.Msg != 0xA3)
  74. {
  75. base.WndProc(ref m);
  76. }
  77. }
  78. #endregion
  79. #region 新增 修改
  80. private void save_Click(object sender, EventArgs e)
  81. {
  82. try
  83. {
  84. ICSPalletBLL.Hepi(listlotmodel,txtLotNOlist.Text, AppConfig.AppConnectString);
  85. ICSBaseSimpleCode.AppshowMessageBox("成功");
  86. }
  87. catch (Exception ex)
  88. {
  89. MessageBox.Show(ex.Message);
  90. }
  91. this.Close();
  92. this.DialogResult = DialogResult.Yes;
  93. }
  94. #endregion
  95. #region 取消
  96. private void can_Click(object sender, EventArgs e)
  97. {
  98. this.Close();
  99. }
  100. #endregion
  101. }
  102. }