12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.MainBusiness.FinancialManagement.SetSmallForm
- {
- public partial class ConditionQueryOutlaySetSmallForm : LYFZ.Software.UI.FinancialManagement.SetSmallForm.ConditionQueryOutlaySetSmallForm
- {
- public ConditionQueryOutlaySetSmallForm()
- {
- this.Shown += ConditionQueryOutlaySetSmallForm_Shown;
- this.btnOK.Click += btnOK_Click;
- this.btnCancel.Click += btnCancel_Click;
- }
- /// <summary>
- /// 是否保存
- /// </summary>
- public bool IsSaveed = false;
- /// <summary>
- /// 编码编号
- /// </summary>
- public string StrSystemCode;
- /// <summary>
- /// 确定的选择数据
- /// </summary>
- public Hashtable htData = new Hashtable();
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void ConditionQueryOutlaySetSmallForm_Shown(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevWithdrawalsName, IsFirstNodeNull: true);
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory(StrSystemCode, this.cmbtreevItemName, IsFirstNodeNull: true);
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnOK_Click(object sender, EventArgs e)
- {
- if (!string.IsNullOrEmpty(this.cmbtreevWithdrawalsName.Text.Trim()) && this.cmbtreevWithdrawalsName.Tag != null)
- { this.htData["WithdrawalsName"] = this.cmbtreevWithdrawalsName.Tag.ToString().Trim(); }
- if (!string.IsNullOrEmpty(this.cmbtreevItemName.Text.Trim()))
- { this.htData["ItemName"] = this.cmbtreevItemName.Text.Trim(); }
- this.IsSaveed = true;
- this.Close();
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnCancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|