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 ServiceKoufeiSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain { public ServiceKoufeiSuperSmallForm() { InitializeComponent(); this.Shown += ServiceKoufeiSuperSmallForm_Shown; this.txtCount.KeyPress += txtCount_KeyPress; this.txtCount.Leave += txtCount_Leave; this.dgvData.CellMouseDoubleClick += dgvData_CellMouseDoubleClick; this.dgvData.CellMouseClick += dgvData_CellMouseClick; this.btnOK.Click += btnOK_Click; this.btnCancel.Click += btnCancel_Click; this.FormClosing += ServiceKoufeiSuperSmallForm_FormClosing; } /// /// 窗体加载事件 /// /// /// protected virtual void ServiceKoufeiSuperSmallForm_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 服务次数离开事件 /// /// /// protected virtual void txtCount_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 服务次数离开事件 /// /// /// protected virtual void txtCount_Leave(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 数据列表双击事件 /// /// /// protected virtual void dgvData_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e) { //throw new NotImplementedException(); } /// /// 数据列表单击事件 /// /// /// protected virtual void dgvData_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e) { //throw new NotImplementedException(); } /// /// 确定 /// /// /// protected virtual void btnOK_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 取消 /// /// /// protected virtual void btnCancel_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 关闭 /// /// /// protected virtual void ServiceKoufeiSuperSmallForm_FormClosing(object sender, FormClosingEventArgs e) { //throw new NotImplementedException(); } } }