DbFind.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. using System;
  2. using System.Data;
  3. using System.Drawing;
  4. using System.Windows.Forms;
  5. using UAS_MES_NEW.CustomControl.TextBoxWithIcon;
  6. using UAS_MES_NEW.DataOperate;
  7. using UAS_MES_NEW.Entity;
  8. using UAS_MES_NEW.PublicMethod;
  9. namespace UAS_MES_NEW
  10. {
  11. public partial class DbFind : CustomControl.BaseForm.BaseForm
  12. {
  13. //判断是否配置了DbFind
  14. bool IsAbleDbFind;
  15. //双击选择的工单号
  16. string TextBoxValue = "";
  17. DataHelper dh = SystemInf.dh;
  18. DataTable dt = new DataTable();
  19. Control[] ctl;
  20. //DBFind查询的字段
  21. string MainField;
  22. //需要赋值的字段
  23. string[] SetValueField;
  24. //需要查询的全部字段
  25. string SelectField;
  26. //发起DbFind请求的窗口
  27. string FormName;
  28. //是否配置了DBfind
  29. string Caller;
  30. //需要查询的表
  31. string BindTable;
  32. string Condition = "";
  33. Control MainControl;
  34. public bool SuccessReturnData = false;
  35. int ScrollNewValue = 0;
  36. public bool IsAbleDbFind1
  37. {
  38. get
  39. {
  40. return IsAbleDbFind;
  41. }
  42. set
  43. {
  44. IsAbleDbFind = value;
  45. }
  46. }
  47. public string TextBoxValue1
  48. {
  49. get
  50. {
  51. return TextBoxValue;
  52. }
  53. set
  54. {
  55. TextBoxValue = value;
  56. }
  57. }
  58. /// <summary>
  59. ///
  60. /// </summary>
  61. /// <param name="field"></param>
  62. /// <param name="setValueField"></param>
  63. /// <param name="caller"></param>
  64. /// <param name="formname"></param>
  65. public DbFind(string field, string tablename, string selectfield, string[] setValueField, string caller, string formname, string condition)
  66. {
  67. InitializeComponent();
  68. DoubleBuffered = true;
  69. try
  70. {
  71. StartPosition = FormStartPosition.CenterParent;
  72. MainField = field;
  73. FormName = formname;
  74. SetValueField = setValueField;
  75. Caller = caller;
  76. Condition = condition + "";
  77. BindTable = tablename;
  78. SelectField = selectfield.Replace("#", " as ");
  79. //返回一个带有结构的空的DataTable
  80. dt = (DataTable)dh.ExecuteSql("select " + SelectField + " from " + tablename + " where ROWNUM<20", "select");
  81. //设置DataTable的描述和列名,为了字段赋值
  82. selectfield = selectfield.Replace(",", "#");
  83. string[] NameAndCapation = selectfield.Split('#');
  84. int index = 0;
  85. //设置列的描述和名称
  86. for (int i = 0; i < dt.Columns.Count; i++)
  87. {
  88. dt.Columns[i].Caption = NameAndCapation[index].Trim();
  89. index = index + 1;
  90. dt.Columns[i].ColumnName = NameAndCapation[index].Trim();
  91. index = index + 1;
  92. }
  93. if (dt != null)
  94. {
  95. //先绑定空的结构
  96. DbFindGridView.DataSource = dt;
  97. for (int i = 0; i < DbFindGridView.Columns.Count; i++)
  98. {
  99. DbFindGridView.Columns[i].AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
  100. }
  101. //获取查询的字段的拼接语句
  102. pagination1.BindDataToNavigator(DbFindGridView, tablename, SelectField, "ID", caller, Condition == null ? "" : Condition);
  103. IsAbleDbFind = true;
  104. }
  105. }
  106. catch (Exception EB)
  107. {
  108. LogManager.DoLog(EB.Message);
  109. IsAbleDbFind = false;
  110. }
  111. }
  112. protected override void WndProc(ref Message m)
  113. {
  114. //拦截双击标题栏、移动窗体的系统消息
  115. if (m.Msg != 0xA3)
  116. base.WndProc(ref m);
  117. }
  118. private void DbFind_Load(object sender, EventArgs e)
  119. {
  120. //用来存放过滤的TextBox的控件
  121. ctl = new Control[dt.Columns.Count];
  122. //Dock是添加的越后面展示时越前面,所以需要从大到小排放
  123. for (int i = dt.Columns.Count - 1; i >= 0; i--)
  124. {
  125. EnterTextBox etb = new EnterTextBox();
  126. etb.Dock = DockStyle.Left;
  127. etb.Location = new Point(DbFindGridView.RowHeadersWidth, DbFindGridView.Columns[i].Width);
  128. etb.Name = dt.Columns[i].Caption;
  129. etb.Tag = dt.Columns[i].Caption;
  130. etb.Size = new Size(DbFindGridView.Columns[i].Width, 22);
  131. etb.KeyDown += FilterData;
  132. this.Controls.Add(etb);
  133. //记录这个生成的控件,后续用于拼接条件
  134. ctl[i] = etb;
  135. }
  136. //最后用一个不可编辑的占住头部长度
  137. EnterTextBox Head = new EnterTextBox();
  138. Head.Name = "PlaceHolder";
  139. Head.Enabled = false;
  140. Head.Dock = DockStyle.Left;
  141. Head.Location = new Point(0, DbFindGridView.RowHeadersWidth);
  142. Head.Size = new Size(DbFindGridView.RowHeadersWidth, 22);
  143. this.Controls.Add(Head);
  144. }
  145. /// <summary>
  146. /// 过滤条件
  147. /// </summary>
  148. /// <param name="sender"></param>
  149. /// <param name="e"></param>
  150. private void FilterData(object sender, KeyEventArgs e)
  151. {
  152. //筛选数据需要将当前页重置到1
  153. //并且手动执行一次刷新
  154. if (e.KeyCode == Keys.Enter)
  155. {
  156. pagination1.Current_Page = 1;
  157. pagination1.GetPageData();
  158. //所有输入框的条件拼接
  159. string filterCondition = BaseUtil.GetScreenSqlCondition(ctl).Replace("where", "").Trim();
  160. //拼接条件为空初始条件不为空
  161. if (filterCondition == "" && Condition != "")
  162. filterCondition = Condition;
  163. //拼接和初始条件都不为空
  164. else if (filterCondition != "" && Condition.Trim() != "")
  165. filterCondition = filterCondition + " and " + Condition;
  166. pagination1.BindDataToNavigator(DbFindGridView, BindTable, SelectField, "ID", Caller, filterCondition);
  167. }
  168. }
  169. //给打开窗体的对应字段赋值
  170. private void DbFindGridView_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
  171. {
  172. if (e.RowIndex >= 0)
  173. {
  174. FormCollection fmCollection = Application.OpenForms;
  175. ControlCollection controls = (ControlCollection)fmCollection[FormName].Controls;
  176. try
  177. {
  178. //先判断DataTable里面是否有这个字段,然后从打开的窗口里面去获取到这个Form,从Form中的指定Panel获取到指定字段的控件
  179. for (int i = 0; i < dt.Columns.Count; i++)
  180. {
  181. fillControl(e, i, fmCollection[FormName]);
  182. }
  183. //发起DBFind的控件
  184. SuccessReturnData = true;
  185. if (MainControl is MaCodeSearchTextBox)
  186. {
  187. MaCodeSearchTextBox ctl = (MainControl as MaCodeSearchTextBox);
  188. ctl.GetData(true);
  189. }
  190. if (MainControl is SearchTextBox)
  191. {
  192. SearchTextBox ctl = (MainControl as SearchTextBox);
  193. ctl.GetData();
  194. }
  195. MainControl.Focus();
  196. }
  197. catch (Exception ea)
  198. {
  199. LogManager.DoLog(ea.Message);
  200. SuccessReturnData = false;
  201. }
  202. dt = (DataTable)DbFindGridView.DataSource;
  203. for (int i = 0; i < dt.Columns.Count; i++)
  204. {
  205. if (MainControl.Name == dt.Columns[i].Caption)
  206. {
  207. TextBoxValue = dt.Rows[e.RowIndex][i].ToString();
  208. break;
  209. }
  210. }
  211. Dispose();
  212. Close();
  213. }
  214. }
  215. private void fillControl(DataGridViewCellEventArgs e, int i, Control ct)
  216. {
  217. for (int j = 0; j < SetValueField.Length; j++)
  218. {
  219. if (ct.Controls.Count > 0 && ct.Name.ToString() != SetValueField[j])
  220. {
  221. Control.ControlCollection controls = ct.Controls;
  222. for (int k = 0; k < ct.Controls.Count; k++)
  223. {
  224. fillControl(e, i, controls[k]);
  225. }
  226. }
  227. else
  228. {
  229. if (ct.Name == MainField)
  230. {
  231. MainControl = ct;
  232. }
  233. if ((SetValueField[j] == dt.Columns[i].Caption || SetValueField[j] == dt.Columns[i].ColumnName || SetValueField[j].Contains(dt.Columns[i].Caption)) && ct.Name.ToString().ToUpper() == SetValueField[j].ToUpper())
  234. try
  235. {
  236. if (ct.Tag.ToString() == "add" && ct.Text != "")
  237. {
  238. if (!ct.Text.Contains(DbFindGridView.Rows[e.RowIndex].Cells[dt.Columns[i].ColumnName].Value.ToString()))
  239. {
  240. ct.Text = ct.Text + "|" + DbFindGridView.Rows[e.RowIndex].Cells[dt.Columns[i].ColumnName].Value.ToString();
  241. }
  242. }
  243. else
  244. {
  245. ct.Text = DbFindGridView.Rows[e.RowIndex].Cells[dt.Columns[i].ColumnName].Value.ToString();
  246. }
  247. }
  248. catch {
  249. ct.Text = DbFindGridView.Rows[e.RowIndex].Cells[dt.Columns[i].ColumnName].Value.ToString();
  250. }
  251. }
  252. }
  253. }
  254. //按下Esc键的时候关闭当前的界面,用于DbFind
  255. private void DbFindGridView_KeyPress(object sender, KeyPressEventArgs e)
  256. {
  257. if (e.KeyChar == (char)Keys.Escape)
  258. {
  259. Dispose();
  260. Close();
  261. }
  262. }
  263. //列宽发生变化的时候TextBox的宽度也发生变化
  264. private void DbFindGridView_ColumnWidthChanged(object sender, DataGridViewColumnEventArgs e)
  265. {
  266. if (ctl != null)
  267. ctl[DbFindGridView.Columns.IndexOf(e.Column)].Width = e.Column.Width;
  268. }
  269. private void DbFindGridView_Scroll(object sender, ScrollEventArgs e)
  270. {
  271. //结合已拖动的长度和列宽计算此列当前展示的长度
  272. ScrollNewValue = e.NewValue;
  273. if (e.ScrollOrientation == ScrollOrientation.HorizontalScroll)
  274. {
  275. int ColumnWidth = 0;
  276. for (int i = 0; i < dt.Columns.Count; i++)
  277. {
  278. ColumnWidth += DbFindGridView.Columns[i].Width;
  279. //如果有列被完全遮蔽,设置对应的输入框宽度为0
  280. if (ColumnWidth < ScrollNewValue)
  281. Controls[dt.Columns[i].Caption].Width = 0;
  282. else if (ColumnWidth > ScrollNewValue)
  283. {
  284. Controls[dt.Columns[i].Caption].Width = ColumnWidth - ScrollNewValue;
  285. break;
  286. }
  287. }
  288. }
  289. }
  290. private void DbFind_FormClosing(object sender, FormClosingEventArgs e)
  291. {
  292. dh.Dispose();
  293. }
  294. }
  295. }