GoldCardViceCashSuperSmallForm.cs 2.0 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 GoldCardViceCashSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public GoldCardViceCashSuperSmallForm()
  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.labelEx7.ForeColor = UIBlueThemeResources.TitleTextColor;
  22. this.Load += new EventHandler(GoldCardViceCashSuperSmallForm_Load);
  23. this.btnSave.Click += new EventHandler(btnSave_Click);
  24. this.btnCancel.Click += new EventHandler(btnCancel_Click);
  25. }
  26. /// <summary>
  27. /// 窗体加载事件
  28. /// </summary>
  29. /// <param name="sender"></param>
  30. /// <param name="e"></param>
  31. protected virtual void GoldCardViceCashSuperSmallForm_Load(object sender, EventArgs e)
  32. {
  33. //throw new NotImplementedException();
  34. }
  35. /// <summary>
  36. /// 保存
  37. /// </summary>
  38. /// <param name="sender"></param>
  39. /// <param name="e"></param>
  40. protected virtual void btnSave_Click(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. /// <summary>
  45. /// 取消
  46. /// </summary>
  47. /// <param name="sender"></param>
  48. /// <param name="e"></param>
  49. protected virtual void btnCancel_Click(object sender, EventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. }
  54. }