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 PackagesBackCashsSelectSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain { public PackagesBackCashsSelectSuperSmallForm() { InitializeComponent(); this.Shown += PackagesBackCashsSelectSuperSmallForm_Shown; this.dgvData.CellMouseDoubleClick += dgvData_CellMouseDoubleClick; } /// /// 加载事件 /// /// /// protected virtual void PackagesBackCashsSelectSuperSmallForm_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 双击事件 /// /// /// protected virtual void dgvData_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e) { //throw new NotImplementedException(); } } }