ReplaceCardNumberSuperSmallForm.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 ReplaceCardNumberSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public ReplaceCardNumberSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  18. this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.labelEx5.ForeColor = UIBlueThemeResources.TitleTextColor;
  20. this.labelEx6.ForeColor = UIBlueThemeResources.TitleTextColor;
  21. this.Load += new EventHandler(ReplaceCardNumberSuperSmallForm_Load);
  22. this.btnSave.Click += new EventHandler(btnSave_Click);
  23. this.btnCancel.Click += new EventHandler(btnCancel_Click);
  24. }
  25. /// <summary>
  26. /// 窗体加载事件
  27. /// </summary>
  28. /// <param name="sender"></param>
  29. /// <param name="e"></param>
  30. protected virtual void ReplaceCardNumberSuperSmallForm_Load(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 btnSave_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. }