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; }
}
///
/// 窗体加载事件
///
///
///
protected override void GetPeopleSuperSmallForm_Load(object sender, EventArgs e)
{
#region 部门人员绑定
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreev);
#endregion
}
///
/// 输入后回车
///
///
///
protected override void cmbtreev_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{ this.btnOK_Click(this, null); }
}
///
/// 确定
///
///
///
protected override void btnOK_Click(object sender, EventArgs e)
{
IsOK = true;
StrValue = this.cmbtreev.Text.Trim() + "," + this.cmbtreev.Tag.ToString().Trim();
this.Close();
}
///
/// 取消
///
///
///
protected override void btnCancel_Click(object sender, EventArgs e)
{
this.Close();
}
}
}