EnterPasswordRetrieveSetSuperSmallForm.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.UI.MembershipManage.SuperSmallForm
  11. {
  12. public partial class EnterPasswordRetrieveSetSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public EnterPasswordRetrieveSetSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  18. this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
  20. this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  21. this.Shown += EnterPasswordRetrieveSetSuperSmallForm_Shown;
  22. this.btnOK.Click += btnOK_Click;
  23. this.btnCancel.Click += btnCancel_Click;
  24. }
  25. /// <summary>
  26. /// 窗体加载事件
  27. /// </summary>
  28. /// <param name="sender"></param>
  29. /// <param name="e"></param>
  30. protected virtual void EnterPasswordRetrieveSetSuperSmallForm_Shown(object sender, EventArgs e)
  31. {
  32. //throw new NotImplementedException();
  33. }
  34. /// <summary>
  35. /// 确定
  36. /// </summary>
  37. /// <param name="sender"></param>
  38. /// <param name="e"></param>
  39. protected virtual void btnOK_Click(object sender, EventArgs e)
  40. {
  41. //throw new NotImplementedException();
  42. }
  43. /// <summary>
  44. /// 取消
  45. /// </summary>
  46. /// <param name="sender"></param>
  47. /// <param name="e"></param>
  48. protected virtual void btnCancel_Click(object sender, EventArgs e)
  49. {
  50. //throw new NotImplementedException();
  51. }
  52. }
  53. }