GoldCardMemberFormMain.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.UI.MembershipManage
  11. {
  12. public partial class GoldCardMemberFormMain : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public GoldCardMemberFormMain()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  20. //this.panelEx2.BackColor = UIBlueThemeResources.BorderAreaColor;
  21. this.UcNavigationTool.LabTitle = "金卡会员";
  22. this.Shown += new EventHandler(GoldCardMemberFormMain_Shown);
  23. this.cmbQueryText.KeyDown += cmbQueryText_KeyDown;
  24. this.btnQuery.Click += new EventHandler(btnQuery_Click);
  25. this.btnOpenNewCard.Click += new EventHandler(btnOpenNewCard_Click);
  26. this.btnCardManage.Click += new EventHandler(btnCardManage_Click);
  27. this.btnPhotographerManagement.Click += btnPhotographerManagement_Click;
  28. this.btnSendSMS.Click += new EventHandler(btnSendSMS_Click);
  29. this.btnImport.Click += new EventHandler(btnImport_Click);
  30. this.btnExporting.Click += new EventHandler(btnExporting_Click);
  31. this.btnClose.Click += new EventHandler(btnClose_Click);
  32. this.dgvData.CellDoubleClick += dgvData_CellDoubleClick;
  33. this.Resize += GoldCardMemberFormMain_Resize;
  34. }
  35. /// <summary>
  36. /// 窗体加载事件
  37. /// </summary>
  38. /// <param name="sender"></param>
  39. /// <param name="e"></param>
  40. protected virtual void GoldCardMemberFormMain_Shown(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. /// <summary>
  45. /// 回车查找
  46. /// </summary>
  47. /// <param name="sender"></param>
  48. /// <param name="e"></param>
  49. protected virtual void cmbQueryText_KeyDown(object sender, KeyEventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. /// <summary>
  54. /// 查询
  55. /// </summary>
  56. /// <param name="sender"></param>
  57. /// <param name="e"></param>
  58. protected virtual void btnQuery_Click(object sender, EventArgs e)
  59. {
  60. //throw new NotImplementedException();
  61. }
  62. /// <summary>
  63. /// 开新卡
  64. /// </summary>
  65. /// <param name="sender"></param>
  66. /// <param name="e"></param>
  67. protected virtual void btnOpenNewCard_Click(object sender, EventArgs e)
  68. {
  69. //throw new NotImplementedException();
  70. }
  71. /// <summary>
  72. /// 会员卡管理
  73. /// </summary>
  74. /// <param name="sender"></param>
  75. /// <param name="e"></param>
  76. protected virtual void btnCardManage_Click(object sender, EventArgs e)
  77. {
  78. //throw new NotImplementedException();
  79. }
  80. /// <summary>
  81. /// 摄友会管理
  82. /// </summary>
  83. /// <param name="sender"></param>
  84. /// <param name="e"></param>
  85. protected virtual void btnPhotographerManagement_Click(object sender, EventArgs e)
  86. {
  87. //throw new NotImplementedException();
  88. }
  89. /// <summary>
  90. /// 发短信
  91. /// </summary>
  92. /// <param name="sender"></param>
  93. /// <param name="e"></param>
  94. protected virtual void btnSendSMS_Click(object sender, EventArgs e)
  95. {
  96. //throw new NotImplementedException();
  97. }
  98. /// <summary>
  99. /// 导入
  100. /// </summary>
  101. /// <param name="sender"></param>
  102. /// <param name="e"></param>
  103. protected virtual void btnImport_Click(object sender, EventArgs e)
  104. {
  105. //throw new NotImplementedException();
  106. }
  107. /// <summary>
  108. /// 导出
  109. /// </summary>
  110. /// <param name="sender"></param>
  111. /// <param name="e"></param>
  112. protected virtual void btnExporting_Click(object sender, EventArgs e)
  113. {
  114. //throw new NotImplementedException();
  115. }
  116. /// <summary>
  117. /// 关闭
  118. /// </summary>
  119. /// <param name="sender"></param>
  120. /// <param name="e"></param>
  121. protected virtual void btnClose_Click(object sender, EventArgs e)
  122. {
  123. //throw new NotImplementedException();
  124. }
  125. /// <summary>
  126. /// 主卡列表双击事件
  127. /// </summary>
  128. /// <param name="sender"></param>
  129. /// <param name="e"></param>
  130. protected virtual void dgvData_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
  131. {
  132. //throw new NotImplementedException();
  133. }
  134. /// <summary>
  135. /// 窗体大小发生变化
  136. /// </summary>
  137. /// <param name="sender"></param>
  138. /// <param name="e"></param>
  139. protected virtual void GoldCardMemberFormMain_Resize(object sender, EventArgs e)
  140. {
  141. //throw new NotImplementedException();
  142. }
  143. }
  144. }