EnterPasswordSuperSmallForm.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.UI.MembershipManage.SuperSmallForm
  10. {
  11. public partial class EnterPasswordSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public EnterPasswordSuperSmallForm()
  14. {
  15. InitializeComponent();
  16. this.Load += new EventHandler(EnterPasswordSuperSmallForm_Load);
  17. this.btnOK.Click += new EventHandler(btnOK_Click);
  18. this.btnCancel.Click += new EventHandler(btnCancel_Click);
  19. this.txtPassWord.KeyDown += txtPassWord_KeyDown;
  20. }
  21. /// <summary>
  22. /// 窗体加载事件
  23. /// </summary>
  24. /// <param name="sender"></param>
  25. /// <param name="e"></param>
  26. protected virtual void EnterPasswordSuperSmallForm_Load(object sender, EventArgs e)
  27. {
  28. //throw new NotImplementedException();
  29. }
  30. /// <summary>
  31. /// 确定
  32. /// </summary>
  33. /// <param name="sender"></param>
  34. /// <param name="e"></param>
  35. protected virtual void btnOK_Click(object sender, EventArgs e)
  36. {
  37. //throw new NotImplementedException();
  38. }
  39. /// <summary>
  40. /// 取消
  41. /// </summary>
  42. /// <param name="sender"></param>
  43. /// <param name="e"></param>
  44. protected virtual void btnCancel_Click(object sender, EventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. /// <summary>
  49. /// 回车
  50. /// </summary>
  51. /// <param name="sender"></param>
  52. /// <param name="e"></param>
  53. protected virtual void txtPassWord_KeyDown(object sender, KeyEventArgs e)
  54. {
  55. //throw new NotImplementedException();
  56. }
  57. }
  58. }