MaCodeSearchTextBox.cs 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Windows.Forms;
  5. using UAS_MES.DataOperate;
  6. using UAS_MES.PublicMethod;
  7. namespace UAS_MES.CustomControl.TextBoxWithIcon
  8. {
  9. public partial class MaCodeSearchTextBox : UserControl
  10. {
  11. #region 构造函数
  12. public MaCodeSearchTextBox()
  13. {
  14. InitializeComponent();
  15. }
  16. #endregion
  17. #region 变量
  18. /// <summary>
  19. /// 是否通过Leave事件找到数据
  20. /// </summary>
  21. public bool LeaveFindData;
  22. /// <summary>
  23. /// DBFind窗体弹出的标题
  24. /// </summary>
  25. private string DBTitle1;
  26. /// <summary>
  27. /// 输入框是否可编辑
  28. /// </summary>
  29. private bool TextBoxEnable1;
  30. /// <summary>
  31. /// 业务逻辑的标识符
  32. /// </summary>
  33. private string caller;
  34. /// <summary>
  35. /// 发起DbFind的窗体
  36. /// </summary>
  37. private string formName;
  38. /// <summary>
  39. /// 需要赋值的字段
  40. /// </summary>
  41. private string[] setValueField;
  42. /// <summary>
  43. /// 初始的筛选条件
  44. /// </summary>
  45. private string condition;
  46. /// <summary>
  47. /// 权限标识
  48. /// </summary>
  49. private string Power1;
  50. /// <summary>
  51. /// 查询的表名
  52. /// </summary>
  53. private string tableName;
  54. /// <summary>
  55. /// 查询的字段
  56. /// </summary>
  57. private string selectField;
  58. /// <summary>
  59. /// 设置绑定的CheckBox
  60. /// </summary>
  61. CheckBox LockCheckBox;
  62. DbFind db;
  63. public override string Text
  64. {
  65. get
  66. {
  67. return TextBox.Text;
  68. }
  69. set
  70. {
  71. TextBox.Text = value;
  72. }
  73. }
  74. string AllPower1;
  75. public string AllPower
  76. {
  77. get
  78. {
  79. return AllPower1;
  80. }
  81. set
  82. {
  83. AllPower1 = value;
  84. }
  85. }
  86. public string Caller
  87. {
  88. get
  89. {
  90. return caller;
  91. }
  92. set
  93. {
  94. caller = value;
  95. }
  96. }
  97. public string FormName
  98. {
  99. get
  100. {
  101. return formName;
  102. }
  103. set
  104. {
  105. formName = value;
  106. }
  107. }
  108. public string[] SetValueField
  109. {
  110. get
  111. {
  112. return setValueField;
  113. }
  114. set
  115. {
  116. setValueField = value;
  117. }
  118. }
  119. public string Condition
  120. {
  121. get
  122. {
  123. return condition;
  124. }
  125. set
  126. {
  127. condition = value;
  128. }
  129. }
  130. public string TableName
  131. {
  132. get
  133. {
  134. return tableName;
  135. }
  136. set
  137. {
  138. tableName = value;
  139. }
  140. }
  141. public string SelectField
  142. {
  143. get
  144. {
  145. return selectField;
  146. }
  147. set
  148. {
  149. selectField = value;
  150. }
  151. }
  152. public string Power
  153. {
  154. get
  155. {
  156. return Power1;
  157. }
  158. set
  159. {
  160. Power1 = value;
  161. }
  162. }
  163. public string DBTitle
  164. {
  165. get
  166. {
  167. return DBTitle1;
  168. }
  169. set
  170. {
  171. DBTitle1 = value;
  172. }
  173. }
  174. public bool TextBoxEnable
  175. {
  176. get
  177. {
  178. return TextBoxEnable1;
  179. }
  180. set
  181. {
  182. TextBoxEnable1 = value;
  183. }
  184. }
  185. #endregion
  186. #region 自定义事件
  187. public delegate void OnTextChange(object sender, EventArgs e);
  188. //定义事件
  189. public event OnTextChange UserControlTextChanged;
  190. //定义委托
  191. public delegate void Icon_Click(object sender, EventArgs e);
  192. /// <summary>
  193. /// 图标点击事件
  194. /// </summary>
  195. public event Icon_Click SearchIconClick;
  196. #endregion
  197. //定义委托
  198. private void TextBox_TextChanged(object sender, EventArgs e)
  199. {
  200. try
  201. {
  202. if (db.SuccessReturnData)
  203. LockCheckBox.Checked = true;
  204. }
  205. catch (Exception) { }
  206. UserControlTextChanged?.Invoke(sender, new EventArgs());
  207. }
  208. //Key先发起失去焦点事件,在执行用户自定义的事件
  209. private void TextBox_KeyDown(object sender, KeyEventArgs e)
  210. {
  211. if (e.KeyCode == Keys.Enter)
  212. {
  213. GetData();
  214. }
  215. }
  216. public void SetLockCheckBox(CheckBox ctl)
  217. {
  218. LockCheckBox = ctl;
  219. }
  220. public void GetData()
  221. {
  222. if (TextBox.Text != "")
  223. {
  224. DataHelper dh = new DataHelper();
  225. List<string> fields = new List<string>();
  226. //获取查询的字段
  227. string[] field = selectField.Replace(",", "#").Trim().Split('#');
  228. for (int i = 0; i < field.Length; i++)
  229. {
  230. if (i % 2 == 0)
  231. fields.Add(field[i]);
  232. }
  233. //将查询到的结果返回界面
  234. string sql = "select " + BaseUtil.AddField(fields.ToArray()) + " from " + tableName + " where " + Tag + "='" + TextBox.Text.ToUpper() + "'";
  235. if (condition != null)
  236. {
  237. sql += " and " + condition;
  238. }
  239. DataTable dt = (DataTable)dh.ExecuteSql(sql, "select");
  240. FormCollection fmCollection = Application.OpenForms;
  241. if (dt.Rows.Count > 0)
  242. {
  243. for (int i = 0; i < dt.Columns.Count; i++)
  244. {
  245. for (int j = 0; j < SetValueField.Length; j++)
  246. {
  247. //利用字段的Tag属性来和列名进行比对
  248. object tag = fmCollection[FormName].Controls[SetValueField[j]].Tag;
  249. if (SetValueField[j] == dt.Columns[i].ColumnName.ToLower() || (tag != null && tag == dt.Columns[i].ColumnName.ToLower()))
  250. {
  251. fmCollection[FormName].Controls[SetValueField[j]].Text = dt.Rows[0][dt.Columns[i].ColumnName].ToString();
  252. }
  253. }
  254. }
  255. LeaveFindData = true;
  256. }
  257. else
  258. LeaveFindData = false;
  259. //不允许工单号为空的情况
  260. LockCheckBox.Checked = true;
  261. }
  262. }
  263. private void Search_Icon_Click(object sender, EventArgs e)
  264. {
  265. SearchIconClick?.Invoke(sender, new EventArgs());
  266. db = new DbFind(Name, tableName, selectField, setValueField, caller, formName, condition);
  267. db.Text = DBTitle1;
  268. LogManager.DoLog("DbFind查询,发起窗口【" + formName + "】,查询表【" + tableName + "】,字段" + selectField + ",条件" + condition);
  269. if (db.IsAbleDbFind1)
  270. {
  271. db.ShowDialog();
  272. }
  273. else
  274. {
  275. MessageBox.Show("该字段未配置DbFind", "提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
  276. }
  277. }
  278. private void TextBox_Enter(object sender, EventArgs e)
  279. {
  280. TextBox.BackColor = System.Drawing.Color.GreenYellow;
  281. }
  282. /// <summary>
  283. /// 重新刷新数据
  284. /// </summary>
  285. /// <param name="sender"></param>
  286. /// <param name="e"></param>
  287. public void RefreshDB(object sender, EventArgs e)
  288. {
  289. TextBox_Leave(sender, e);
  290. }
  291. public void TextBox_Leave(object sender, EventArgs e)
  292. {
  293. TextBox.BackColor = System.Drawing.Color.White;
  294. GetData();
  295. }
  296. private void SearchTextBox_Load(object sender, EventArgs e)
  297. {
  298. if (!TextBoxEnable1)
  299. TextBox.BackColor = System.Drawing.Color.White;
  300. TextBox.Enabled = TextBoxEnable1;
  301. }
  302. private void SearchTextBox_SizeChanged(object sender, EventArgs e)
  303. {
  304. TextBox.Width = this.Width - Search_Icon.Width - 3;
  305. }
  306. }
  307. }