DataSetCashBackSmallForm.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.SetSmallForm
  11. {
  12. public partial class DataSetCashBackSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public DataSetCashBackSmallForm()
  15. {
  16. InitializeComponent();
  17. this.labelEx15.ForeColor = UIBlueThemeResources.TitleTextColor;
  18. this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  19. this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  21. this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
  22. this.Shown += CashBackCardCashBackProportionSuperSmallForm_Shown;
  23. this.txtCardsNo.Leave += new EventHandler(txtCardsNo_Leave);
  24. this.btnOK.Click += new EventHandler(btnOK_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 CashBackCardCashBackProportionSuperSmallForm_Shown(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 txtCardsNo_Leave(object sender, EventArgs 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 btnOK_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. }