ConditionQueryOutlaySetSmallForm.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.FinancialManagement.SetSmallForm
  11. {
  12. public partial class ConditionQueryOutlaySetSmallForm : LYFZ.Software.UI.FinancialManagement.SetSmallForm.ConditionQueryOutlaySetSmallForm
  13. {
  14. public ConditionQueryOutlaySetSmallForm()
  15. {
  16. this.Shown += ConditionQueryOutlaySetSmallForm_Shown;
  17. this.btnOK.Click += btnOK_Click;
  18. this.btnCancel.Click += btnCancel_Click;
  19. }
  20. /// <summary>
  21. /// 是否保存
  22. /// </summary>
  23. public bool IsSaveed = false;
  24. /// <summary>
  25. /// 编码编号
  26. /// </summary>
  27. public string StrSystemCode;
  28. /// <summary>
  29. /// 确定的选择数据
  30. /// </summary>
  31. public Hashtable htData = new Hashtable();
  32. /// <summary>
  33. /// 窗体加载事件
  34. /// </summary>
  35. /// <param name="sender"></param>
  36. /// <param name="e"></param>
  37. void ConditionQueryOutlaySetSmallForm_Shown(object sender, EventArgs e)
  38. {
  39. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevWithdrawalsName, IsFirstNodeNull: true);
  40. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory(StrSystemCode, this.cmbtreevItemName, IsFirstNodeNull: true);
  41. }
  42. /// <summary>
  43. /// 确定
  44. /// </summary>
  45. /// <param name="sender"></param>
  46. /// <param name="e"></param>
  47. void btnOK_Click(object sender, EventArgs e)
  48. {
  49. if (!string.IsNullOrEmpty(this.cmbtreevWithdrawalsName.Text.Trim()) && this.cmbtreevWithdrawalsName.Tag != null)
  50. { this.htData["WithdrawalsName"] = this.cmbtreevWithdrawalsName.Tag.ToString().Trim(); }
  51. if (!string.IsNullOrEmpty(this.cmbtreevItemName.Text.Trim()))
  52. { this.htData["ItemName"] = this.cmbtreevItemName.Text.Trim(); }
  53. this.IsSaveed = true;
  54. this.Close();
  55. }
  56. /// <summary>
  57. /// 取消
  58. /// </summary>
  59. /// <param name="sender"></param>
  60. /// <param name="e"></param>
  61. void btnCancel_Click(object sender, EventArgs e)
  62. {
  63. this.Close();
  64. }
  65. }
  66. }