12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- 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;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void ServiceConsumeHomeSmallForm_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 手机号码
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtTelephone_KeyDown(object sender, KeyEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 会员卡
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtMemberCardNumber_KeyDown(object sender, KeyEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 列表点击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void dgvData_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 扣费
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnKoufei_Click(object sender, EventArgs 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 btnServiceToolbox_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|