RedeemPointsSuperSmallForm.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 RedeemPointsSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public RedeemPointsSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  18. this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. this.labelEx7.ForeColor = UIBlueThemeResources.TitleTextColor;
  21. this.labelEx6.ForeColor = UIBlueThemeResources.TitleTextColor;
  22. this.Load += new EventHandler(RedeemPointsSuperSmallForm_Load);
  23. this.FormClosing += RedeemPointsSuperSmallForm_FormClosing;
  24. this.btnSave.Click += new EventHandler(btnSave_Click);
  25. this.btnCancel.Click += new EventHandler(btnCancel_Click);
  26. }
  27. /// <summary>
  28. /// 窗体加载事件
  29. /// </summary>
  30. /// <param name="sender"></param>
  31. /// <param name="e"></param>
  32. protected virtual void RedeemPointsSuperSmallForm_Load(object sender, EventArgs e)
  33. {
  34. //throw new NotImplementedException();
  35. }
  36. /// <summary>
  37. /// 关闭窗体后发生事件
  38. /// </summary>
  39. /// <param name="sender"></param>
  40. /// <param name="e"></param>
  41. protected virtual void RedeemPointsSuperSmallForm_FormClosing(object sender, FormClosingEventArgs e)
  42. {
  43. //throw new NotImplementedException();
  44. }
  45. /// <summary>
  46. /// 保存
  47. /// </summary>
  48. /// <param name="sender"></param>
  49. /// <param name="e"></param>
  50. protected virtual void btnSave_Click(object sender, EventArgs e)
  51. {
  52. //throw new NotImplementedException();
  53. }
  54. /// <summary>
  55. /// 取消
  56. /// </summary>
  57. /// <param name="sender"></param>
  58. /// <param name="e"></param>
  59. protected virtual void btnCancel_Click(object sender, EventArgs e)
  60. {
  61. //throw new NotImplementedException();
  62. }
  63. }
  64. }