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 { public partial class ServiceConsumeHomeSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain { public ServiceConsumeHomeSmallForm() { InitializeComponent(); this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor; this.panelEx1.BorderStyle = BorderStyle.FixedSingle; this.panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor; this.labelEx3.ForeColor = UIBlueThemeResources.TitleTextColor; this.UcNavigationTool.LabTitle = "服务消费"; this.Shown += ServiceConsumeHomeSmallForm_Shown; this.txtTelephone.KeyDown += txtTelephone_KeyDown; this.txtMemberCardNumber.KeyDown += txtMemberCardNumber_KeyDown; this.dgvData.CellMouseClick += dgvData_CellMouseClick; this.btnKoufei.Click += btnKoufei_Click; this.btnRecharge.Click += btnRecharge_Click; this.btnServiceToolbox.Click += btnServiceToolbox_Click; } /// /// 窗体加载事件 /// /// /// protected virtual void ServiceConsumeHomeSmallForm_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 手机号码 /// /// /// protected virtual void txtTelephone_KeyDown(object sender, KeyEventArgs e) { //throw new NotImplementedException(); } /// /// 会员卡 /// /// /// protected virtual void txtMemberCardNumber_KeyDown(object sender, KeyEventArgs e) { //throw new NotImplementedException(); } /// /// 列表点击事件 /// /// /// protected virtual void dgvData_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e) { //throw new NotImplementedException(); } /// /// 扣费 /// /// /// protected virtual void btnKoufei_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 充值 /// /// /// protected virtual void btnRecharge_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 服务箱 /// /// /// protected virtual void btnServiceToolbox_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } } }