华恒Mes鼎捷代码
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.

116 lines
3.5 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 FormICSDataCollectInfoDeleteComfirm : DevExpress.XtraEditors.XtraForm
  23. {
  24. String guid = "";
  25. ICSDCT entity = new ICSDCT();
  26. public string PRCode = "";
  27. #region 构造函数
  28. public FormICSDataCollectInfoDeleteComfirm()
  29. {
  30. InitializeComponent();
  31. }
  32. public FormICSDataCollectInfoDeleteComfirm(String id)
  33. {
  34. InitializeComponent();
  35. guid = id;
  36. }
  37. #endregion
  38. #region 关闭 退出
  39. private void btnClose_Click(object sender, EventArgs e)
  40. {
  41. this.Close();
  42. }
  43. #endregion
  44. #region 移动窗体
  45. private const int WM_NCHITTEST = 0x84;
  46. private const int HTCLIENT = 0x1;
  47. private const int HTCAPTION = 0x2;
  48. //首先必须了解Windows的消息传递机制,当有鼠标活动消息时,
  49. //系统发送WM_NCHITTEST 消息给窗体作为判断消息发生地的根据。 nchittest
  50. //假如你点击的是标题栏,窗体收到的消息值就是 HTCAPTION ,
  51. //同样地,若接受到的消息是 HTCLIENT,说明用户点击的是客户区,也就是鼠标消息发生在客户区。
  52. //重写窗体,使窗体可以不通过自带标题栏实现移动
  53. protected override void WndProc(ref Message m)
  54. {
  55. //当重载窗体的 WndProc 方法时,可以截获 WM_NCHITTEST 消息并改些该消息,
  56. //当判断鼠标事件发生在客户区时,改写改消息,发送 HTCAPTION 给窗体,
  57. //这样,窗体收到的消息就时 HTCAPTION ,在客户区通过鼠标来拖动窗体就如同通过标题栏来拖动一样。
  58. //注意:当你重载 WndProc 并改写鼠标事件后,整个窗体的鼠标事件也就随之改变了。
  59. switch (m.Msg)
  60. {
  61. case WM_NCHITTEST:
  62. base.WndProc(ref m);
  63. if ((int)m.Result == HTCLIENT)
  64. m.Result = (IntPtr)HTCAPTION;
  65. return;
  66. }
  67. //拦截双击标题栏、移动窗体的系统消息
  68. if (m.Msg != 0xA3)
  69. {
  70. base.WndProc(ref m);
  71. }
  72. }
  73. #endregion
  74. #region 新增 修改
  75. private void save_Click(object sender, EventArgs e)
  76. {
  77. if (txtPRCode.Text == "")
  78. {
  79. ICSBaseSimpleCode.AppshowMessageBox("请先输入送货单号!");
  80. return;
  81. }
  82. else
  83. {
  84. PRCode = txtPRCode.Text.Trim();
  85. this.Close();
  86. }
  87. }
  88. #endregion
  89. #region 取消
  90. private void can_Click(object sender, EventArgs e)
  91. {
  92. this.Close();
  93. }
  94. #endregion
  95. #region 页面加载
  96. private void FormICSItenLotAdd_Load(object sender, EventArgs e)
  97. {
  98. }
  99. #endregion
  100. }
  101. }