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;
}
///
/// 窗体加载事件
///
///
///
protected virtual void GoldCardRechargeSuperSmallForm_Load(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 关闭
///
///
///
protected virtual void GoldCardRechargeSuperSmallForm_FormClosed(object sender, FormClosedEventArgs e)
{
//throw new NotImplementedException();
}
///
/// 充值金额
///
///
///
protected virtual void cmbRechargeAmount_SelectedIndexChanged(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 充值类别
///
///
///
protected virtual void cmbRechargeCategory_TextChanged(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 支付方式
///
///
///
protected virtual void cmbPaymentMethod_TextChanged(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 接单人员选择
///
///
///
protected virtual void cmbtreevOrderPerson_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
{
//throw new NotImplementedException();
}
///
/// 充值
///
///
///
protected virtual void btnRecharge_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 取消
///
///
///
protected virtual void btnCancel_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 设置
///
///
///
protected virtual void btnSet_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 输入限制
///
///
///
protected virtual void cmbRechargeAmount_KeyPress(object sender, KeyPressEventArgs e)
{
//throw new NotImplementedException();
}
///
/// 输入限制
///
///
///
protected virtual void txtFeedbackAmount_KeyPress(object sender, KeyPressEventArgs e)
{
//throw new NotImplementedException();
}
///
/// 充值金额回车事件
///
///
///
protected virtual void cmbRechargeAmount_KeyDown(object sender, KeyEventArgs e)
{
//throw new NotImplementedException();
}
///
/// 充值金额离开事件
///
///
///
protected virtual void cmbRechargeAmount_Leave(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
private void comboBoxEx1_SelectedIndexChanged(object sender, EventArgs e)
{
}
}
}