GetPeopleSuperSmallForm.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.MainBusiness.CameraControlBook.SuperSmallForm
  10. {
  11. public partial class GetPeopleSuperSmallForm : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.GetPeopleSuperSmallForm
  12. {
  13. public GetPeopleSuperSmallForm()
  14. {
  15. }
  16. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  17. private string _strvalue = "";
  18. public string StrValue
  19. {
  20. get { return _strvalue; }
  21. set { _strvalue = value; }
  22. }
  23. private bool _isok = false;
  24. public bool IsOK
  25. {
  26. get { return _isok; }
  27. set { _isok = value; }
  28. }
  29. /// <summary>
  30. /// 窗体加载事件
  31. /// </summary>
  32. /// <param name="sender"></param>
  33. /// <param name="e"></param>
  34. protected override void GetPeopleSuperSmallForm_Load(object sender, EventArgs e)
  35. {
  36. #region 部门人员绑定
  37. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreev);
  38. #endregion
  39. }
  40. /// <summary>
  41. /// 输入后回车
  42. /// </summary>
  43. /// <param name="sender"></param>
  44. /// <param name="e"></param>
  45. protected override void cmbtreev_KeyDown(object sender, KeyEventArgs e)
  46. {
  47. if (e.KeyCode == Keys.Enter)
  48. { this.btnOK_Click(this, null); }
  49. }
  50. /// <summary>
  51. /// 确定
  52. /// </summary>
  53. /// <param name="sender"></param>
  54. /// <param name="e"></param>
  55. protected override void btnOK_Click(object sender, EventArgs e)
  56. {
  57. IsOK = true;
  58. StrValue = this.cmbtreev.Text.Trim() + "," + this.cmbtreev.Tag.ToString().Trim();
  59. this.Close();
  60. }
  61. /// <summary>
  62. /// 取消
  63. /// </summary>
  64. /// <param name="sender"></param>
  65. /// <param name="e"></param>
  66. protected override void btnCancel_Click(object sender, EventArgs e)
  67. {
  68. this.Close();
  69. }
  70. }
  71. }