123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System;
- 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.CameraControlBook.SuperSmallForm
- {
- public partial class GetPeopleSuperSmallForm : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.GetPeopleSuperSmallForm
- {
- public GetPeopleSuperSmallForm()
- {
- }
- LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
- private string _strvalue = "";
- public string StrValue
- {
- get { return _strvalue; }
- set { _strvalue = value; }
- }
- private bool _isok = false;
- public bool IsOK
- {
- get { return _isok; }
- set { _isok = value; }
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void GetPeopleSuperSmallForm_Load(object sender, EventArgs e)
- {
- #region 部门人员绑定
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreev);
- #endregion
- }
- /// <summary>
- /// 输入后回车
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void cmbtreev_KeyDown(object sender, KeyEventArgs e)
- {
- if (e.KeyCode == Keys.Enter)
- { this.btnOK_Click(this, null); }
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnOK_Click(object sender, EventArgs e)
- {
- IsOK = true;
- StrValue = this.cmbtreev.Text.Trim() + "," + this.cmbtreev.Tag.ToString().Trim();
- this.Close();
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnCancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|