PackagesBackCashsSelectSuperSmallForm.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.UI.MembershipManage.SuperSmallForm
  10. {
  11. public partial class PackagesBackCashsSelectSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public PackagesBackCashsSelectSuperSmallForm()
  14. {
  15. InitializeComponent();
  16. this.Shown += PackagesBackCashsSelectSuperSmallForm_Shown;
  17. this.dgvData.CellMouseDoubleClick += dgvData_CellMouseDoubleClick;
  18. }
  19. /// <summary>
  20. /// 加载事件
  21. /// </summary>
  22. /// <param name="sender"></param>
  23. /// <param name="e"></param>
  24. protected virtual void PackagesBackCashsSelectSuperSmallForm_Shown(object sender, EventArgs e)
  25. {
  26. //throw new NotImplementedException();
  27. }
  28. /// <summary>
  29. /// 双击事件
  30. /// </summary>
  31. /// <param name="sender"></param>
  32. /// <param name="e"></param>
  33. protected virtual void dgvData_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
  34. {
  35. //throw new NotImplementedException();
  36. }
  37. }
  38. }