锐腾搅拌上料功能
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.

140 lines
4.6 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 FormICSASNIQCMPAdd : DevExpress.XtraEditors.XtraForm
  23. {
  24. String guid = "";
  25. ICSASNIQC entity = new ICSASNIQC();
  26. #region 构造函数
  27. public FormICSASNIQCMPAdd()
  28. {
  29. InitializeComponent();
  30. }
  31. public FormICSASNIQCMPAdd(String id)
  32. {
  33. InitializeComponent();
  34. guid = id;
  35. }
  36. #endregion
  37. #region 关闭 退出
  38. private void btnClose_Click(object sender, EventArgs e)
  39. {
  40. this.Close();
  41. }
  42. #endregion
  43. #region 移动窗体
  44. private const int WM_NCHITTEST = 0x84;
  45. private const int HTCLIENT = 0x1;
  46. private const int HTCAPTION = 0x2;
  47. //首先必须了解Windows的消息传递机制,当有鼠标活动消息时,
  48. //系统发送WM_NCHITTEST 消息给窗体作为判断消息发生地的根据。 nchittest
  49. //假如你点击的是标题栏,窗体收到的消息值就是 HTCAPTION ,
  50. //同样地,若接受到的消息是 HTCLIENT,说明用户点击的是客户区,也就是鼠标消息发生在客户区。
  51. //重写窗体,使窗体可以不通过自带标题栏实现移动
  52. protected override void WndProc(ref Message m)
  53. {
  54. //当重载窗体的 WndProc 方法时,可以截获 WM_NCHITTEST 消息并改些该消息,
  55. //当判断鼠标事件发生在客户区时,改写改消息,发送 HTCAPTION 给窗体,
  56. //这样,窗体收到的消息就时 HTCAPTION ,在客户区通过鼠标来拖动窗体就如同通过标题栏来拖动一样。
  57. //注意:当你重载 WndProc 并改写鼠标事件后,整个窗体的鼠标事件也就随之改变了。
  58. switch (m.Msg)
  59. {
  60. case WM_NCHITTEST:
  61. base.WndProc(ref m);
  62. if ((int)m.Result == HTCLIENT)
  63. m.Result = (IntPtr)HTCAPTION;
  64. return;
  65. }
  66. //拦截双击标题栏、移动窗体的系统消息
  67. if (m.Msg != 0xA3)
  68. {
  69. base.WndProc(ref m);
  70. }
  71. }
  72. #endregion
  73. #region 新增 修改
  74. private void save_Click(object sender, EventArgs e)
  75. {
  76. entity.INSPECTOR = txtINSPECTOR.Text.Trim();
  77. entity.PIC = txtPIC.Text.Trim();
  78. entity.LOTNO = txtLOTNO.Text.Trim();
  79. entity.STANDARD = txtSTANDARD.Text.Trim();
  80. entity.RESULT = txtRESULT.Text.Trim();
  81. entity.RECEIVEDATE = Convert.ToDateTime(txtCreateTIME.Text.ToString().Trim());
  82. entity.MUSER = AppConfig.UserId;
  83. entity.MUSERName = AppConfig.UserName;
  84. entity.MTIME = Convert.ToDateTime(AppConfig.GetSeverDateTime("yyyy-MM-dd hh:mm:ss").ToString());
  85. try
  86. {
  87. ICSASNIQCBLL.Edit(entity, AppConfig.AppConnectString);
  88. this.Close();
  89. ICSBaseSimpleCode.AppshowMessageBox("操作成功");
  90. }
  91. catch (Exception ex)
  92. {
  93. ICSBaseSimpleCode.AppshowMessageBox(ex.Message);
  94. }
  95. }
  96. #endregion
  97. #region 取消
  98. private void can_Click(object sender, EventArgs e)
  99. {
  100. this.Close();
  101. }
  102. #endregion
  103. #region 页面加载
  104. private void FormICSItenLotAdd_Load(object sender, EventArgs e)
  105. {
  106. if (guid != "")
  107. {
  108. lblTitle.Text = "检验结果维护";
  109. entity = ICSASNIQCBLL.select(guid, AppConfig.AppConnectString);
  110. txtINSPECTOR.Text = entity.INSPECTOR;
  111. txtLOTNO.Text = entity.LOTNO;
  112. txtSTANDARD.Text = entity.STANDARD;
  113. txtRESULT.Text = entity.RESULT;
  114. txtPIC.Text = entity.PIC;
  115. txtCreateTIME.Text = entity.RECEIVEDATE.ToString();
  116. }
  117. else {
  118. lblTitle.Text = "检验结果维护";
  119. }
  120. }
  121. #endregion
  122. }
  123. }