GoldCardCashSuperSmallForm.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 GoldCardCashSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public GoldCardCashSuperSmallForm()
  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(GoldCardCashSuperSmallForm_Load);
  22. this.FormClosing += GoldCardCashSuperSmallForm_FormClosing;
  23. this.btnSave.Click += new EventHandler(btnSave_Click);
  24. this.btnCancel.Click += new EventHandler(btnCancel_Click);
  25. this.txtCashAmount.KeyPress += txtCashAmount_KeyPress;
  26. this.txtTouchAccount.KeyPress += txtTouchAccount_KeyPress;
  27. }
  28. /// <summary>
  29. /// 窗体加载事件
  30. /// </summary>
  31. /// <param name="sender"></param>
  32. /// <param name="e"></param>
  33. protected virtual void GoldCardCashSuperSmallForm_Load(object sender, EventArgs e)
  34. {
  35. //throw new NotImplementedException();
  36. }
  37. /// <summary>
  38. /// 关闭窗体后发生事件
  39. /// </summary>
  40. /// <param name="sender"></param>
  41. /// <param name="e"></param>
  42. protected virtual void GoldCardCashSuperSmallForm_FormClosing(object sender, FormClosingEventArgs e)
  43. {
  44. //throw new NotImplementedException();
  45. }
  46. /// <summary>
  47. /// 保存
  48. /// </summary>
  49. /// <param name="sender"></param>
  50. /// <param name="e"></param>
  51. protected virtual void btnSave_Click(object sender, EventArgs e)
  52. {
  53. //throw new NotImplementedException();
  54. }
  55. /// <summary>
  56. /// 取消
  57. /// </summary>
  58. /// <param name="sender"></param>
  59. /// <param name="e"></param>
  60. protected virtual void btnCancel_Click(object sender, EventArgs e)
  61. {
  62. //throw new NotImplementedException();
  63. }
  64. /// <summary>
  65. /// 提现金额限制输入
  66. /// </summary>
  67. /// <param name="sender"></param>
  68. /// <param name="e"></param>
  69. protected virtual void txtCashAmount_KeyPress(object sender, KeyPressEventArgs e)
  70. {
  71. //throw new NotImplementedException();
  72. }
  73. /// <summary>
  74. /// 摸帐金额限制输入
  75. /// </summary>
  76. /// <param name="sender"></param>
  77. /// <param name="e"></param>
  78. protected virtual void txtTouchAccount_KeyPress(object sender, KeyPressEventArgs e)
  79. {
  80. //throw new NotImplementedException();
  81. }
  82. }
  83. }