DbFind.cs 11 KB

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