GoldCardViceCardNumberSmallForm.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 GoldCardViceCardNumberSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public GoldCardViceCardNumberSmallForm()
  14. {
  15. InitializeComponent();
  16. this.Load += GoldCardViceCardNumberSmallForm_Load;
  17. this.btnOK.Click += btnOK_Click;
  18. this.btnClose.Click += btnClose_Click;
  19. }
  20. /// <summary>
  21. /// 窗体加载事件
  22. /// </summary>
  23. /// <param name="sender"></param>
  24. /// <param name="e"></param>
  25. protected virtual void GoldCardViceCardNumberSmallForm_Load(object sender, EventArgs e)
  26. {
  27. //throw new NotImplementedException();
  28. }
  29. /// <summary>
  30. /// 确定
  31. /// </summary>
  32. /// <param name="sender"></param>
  33. /// <param name="e"></param>
  34. protected virtual void btnOK_Click(object sender, EventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. /// <summary>
  39. /// 关闭
  40. /// </summary>
  41. /// <param name="sender"></param>
  42. /// <param name="e"></param>
  43. protected virtual void btnClose_Click(object sender, EventArgs e)
  44. {
  45. //throw new NotImplementedException();
  46. }
  47. }
  48. }