123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- using LYFZ.ComponentLibrary;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.UI.MembershipManage.SuperSmallForm
- {
- public partial class GoldCardRechargeSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public GoldCardRechargeSuperSmallForm()
- {
- InitializeComponent();
- this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
- this.panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.panelEx3.BorderStyle = BorderStyle.FixedSingle;
- this.labelEx6.ForeColor = UIBlueThemeResources.TitleTextColor;
- this.labelEx7.ForeColor = UIBlueThemeResources.TitleTextColor;
- this.Load += new EventHandler(GoldCardRechargeSuperSmallForm_Load);
- this.FormClosed += GoldCardRechargeSuperSmallForm_FormClosed;
- this.cmbRechargeAmount.SelectedIndexChanged += cmbRechargeAmount_SelectedIndexChanged;
- this.cmbRechargeCategory.TextChanged += cmbRechargeCategory_TextChanged;
- this.cmbPaymentMethod.TextChanged += cmbPaymentMethod_TextChanged;
- this.btnRecharge.Click += new EventHandler(btnRecharge_Click);
- this.btnCancel.Click += new EventHandler(btnCancel_Click);
- this.btnSet.Click += btnSet_Click;
- this.cmbRechargeAmount.KeyPress += cmbRechargeAmount_KeyPress;
- this.txtFeedbackAmount.KeyPress += txtFeedbackAmount_KeyPress;
- this.cmbRechargeAmount.KeyDown += cmbRechargeAmount_KeyDown;
- this.cmbRechargeAmount.Leave += cmbRechargeAmount_Leave;
- this.cmbtreevOrderPerson.ComboBoxTree_NodeMouseClick += cmbtreevOrderPerson_ComboBoxTree_NodeMouseClick;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void GoldCardRechargeSuperSmallForm_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 关闭
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void GoldCardRechargeSuperSmallForm_FormClosed(object sender, FormClosedEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 充值金额
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void cmbRechargeAmount_SelectedIndexChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 充值类别
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void cmbRechargeCategory_TextChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 支付方式
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void cmbPaymentMethod_TextChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 接单人员选择
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void cmbtreevOrderPerson_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 充值
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnRecharge_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnCancel_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnSet_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void cmbRechargeAmount_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtFeedbackAmount_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 充值金额回车事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void cmbRechargeAmount_KeyDown(object sender, KeyEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 充值金额离开事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void cmbRechargeAmount_Leave(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- private void comboBoxEx1_SelectedIndexChanged(object sender, EventArgs e)
- {
- }
- }
- }
|