GoldCardRechargeSuperSmallForm.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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 GoldCardRechargeSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public GoldCardRechargeSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  18. this.panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.panelEx3.BorderStyle = BorderStyle.FixedSingle;
  20. this.labelEx6.ForeColor = UIBlueThemeResources.TitleTextColor;
  21. this.labelEx7.ForeColor = UIBlueThemeResources.TitleTextColor;
  22. this.Load += new EventHandler(GoldCardRechargeSuperSmallForm_Load);
  23. this.FormClosed += GoldCardRechargeSuperSmallForm_FormClosed;
  24. this.cmbRechargeAmount.SelectedIndexChanged += cmbRechargeAmount_SelectedIndexChanged;
  25. this.cmbRechargeCategory.TextChanged += cmbRechargeCategory_TextChanged;
  26. this.cmbPaymentMethod.TextChanged += cmbPaymentMethod_TextChanged;
  27. this.btnRecharge.Click += new EventHandler(btnRecharge_Click);
  28. this.btnCancel.Click += new EventHandler(btnCancel_Click);
  29. this.btnSet.Click += btnSet_Click;
  30. this.cmbRechargeAmount.KeyPress += cmbRechargeAmount_KeyPress;
  31. this.txtFeedbackAmount.KeyPress += txtFeedbackAmount_KeyPress;
  32. this.cmbRechargeAmount.KeyDown += cmbRechargeAmount_KeyDown;
  33. this.cmbRechargeAmount.Leave += cmbRechargeAmount_Leave;
  34. this.cmbtreevOrderPerson.ComboBoxTree_NodeMouseClick += cmbtreevOrderPerson_ComboBoxTree_NodeMouseClick;
  35. }
  36. /// <summary>
  37. /// 窗体加载事件
  38. /// </summary>
  39. /// <param name="sender"></param>
  40. /// <param name="e"></param>
  41. protected virtual void GoldCardRechargeSuperSmallForm_Load(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 GoldCardRechargeSuperSmallForm_FormClosed(object sender, FormClosedEventArgs 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 cmbRechargeAmount_SelectedIndexChanged(object sender, EventArgs e)
  60. {
  61. //throw new NotImplementedException();
  62. }
  63. /// <summary>
  64. /// 充值类别
  65. /// </summary>
  66. /// <param name="sender"></param>
  67. /// <param name="e"></param>
  68. protected virtual void cmbRechargeCategory_TextChanged(object sender, EventArgs e)
  69. {
  70. //throw new NotImplementedException();
  71. }
  72. /// <summary>
  73. /// 支付方式
  74. /// </summary>
  75. /// <param name="sender"></param>
  76. /// <param name="e"></param>
  77. protected virtual void cmbPaymentMethod_TextChanged(object sender, EventArgs e)
  78. {
  79. //throw new NotImplementedException();
  80. }
  81. /// <summary>
  82. /// 接单人员选择
  83. /// </summary>
  84. /// <param name="sender"></param>
  85. /// <param name="e"></param>
  86. protected virtual void cmbtreevOrderPerson_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  87. {
  88. //throw new NotImplementedException();
  89. }
  90. /// <summary>
  91. /// 充值
  92. /// </summary>
  93. /// <param name="sender"></param>
  94. /// <param name="e"></param>
  95. protected virtual void btnRecharge_Click(object sender, EventArgs e)
  96. {
  97. //throw new NotImplementedException();
  98. }
  99. /// <summary>
  100. /// 取消
  101. /// </summary>
  102. /// <param name="sender"></param>
  103. /// <param name="e"></param>
  104. protected virtual void btnCancel_Click(object sender, EventArgs e)
  105. {
  106. //throw new NotImplementedException();
  107. }
  108. /// <summary>
  109. /// 设置
  110. /// </summary>
  111. /// <param name="sender"></param>
  112. /// <param name="e"></param>
  113. protected virtual void btnSet_Click(object sender, EventArgs e)
  114. {
  115. //throw new NotImplementedException();
  116. }
  117. /// <summary>
  118. /// 输入限制
  119. /// </summary>
  120. /// <param name="sender"></param>
  121. /// <param name="e"></param>
  122. protected virtual void cmbRechargeAmount_KeyPress(object sender, KeyPressEventArgs e)
  123. {
  124. //throw new NotImplementedException();
  125. }
  126. /// <summary>
  127. /// 输入限制
  128. /// </summary>
  129. /// <param name="sender"></param>
  130. /// <param name="e"></param>
  131. protected virtual void txtFeedbackAmount_KeyPress(object sender, KeyPressEventArgs e)
  132. {
  133. //throw new NotImplementedException();
  134. }
  135. /// <summary>
  136. /// 充值金额回车事件
  137. /// </summary>
  138. /// <param name="sender"></param>
  139. /// <param name="e"></param>
  140. protected virtual void cmbRechargeAmount_KeyDown(object sender, KeyEventArgs e)
  141. {
  142. //throw new NotImplementedException();
  143. }
  144. /// <summary>
  145. /// 充值金额离开事件
  146. /// </summary>
  147. /// <param name="sender"></param>
  148. /// <param name="e"></param>
  149. protected virtual void cmbRechargeAmount_Leave(object sender, EventArgs e)
  150. {
  151. //throw new NotImplementedException();
  152. }
  153. private void comboBoxEx1_SelectedIndexChanged(object sender, EventArgs e)
  154. {
  155. }
  156. }
  157. }