PhotographerConferenceStatisticSmallForm.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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 PhotographerConferenceStatisticSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public PhotographerConferenceStatisticSmallForm()
  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 += PhotographerConferenceStatisticSmallForm_Shown;
  23. this.Load += PhotographerConferenceStatisticSmallForm_Load;
  24. this.btnQuery.Click += btnQuery_Click;
  25. this.btnConditionQuery.Click += btnConditionQuery_Click;
  26. this.btnSendSMS.Click += btnSendSMS_Click;
  27. this.btnColse.Click += btnColse_Click;
  28. this.tabPanel.SelectedIndexChanged += tabPanel_SelectedIndexChanged;
  29. this.dgvData1.RowsAdded += dgvData1_RowsAdded;
  30. this.dgvData1.MouseDoubleClick += dgvData1_MouseDoubleClick;
  31. this.dgvData3.MouseDoubleClick += dgvData3_MouseDoubleClick;
  32. this.txtQuery.KeyDown += txtQuery_KeyDown;
  33. }
  34. /// <summary>
  35. /// 窗体加载事件
  36. /// </summary>
  37. /// <param name="sender"></param>
  38. /// <param name="e"></param>
  39. protected virtual void PhotographerConferenceStatisticSmallForm_Shown(object sender, EventArgs e)
  40. {
  41. //throw new NotImplementedException();
  42. }
  43. /// <summary>
  44. /// 窗体加载事件
  45. /// </summary>
  46. /// <param name="sender"></param>
  47. /// <param name="e"></param>
  48. protected virtual void PhotographerConferenceStatisticSmallForm_Load(object sender, EventArgs e)
  49. {
  50. //throw new NotImplementedException();
  51. }
  52. /// <summary>
  53. /// 查询
  54. /// </summary>
  55. /// <param name="sender"></param>
  56. /// <param name="e"></param>
  57. protected virtual void btnQuery_Click(object sender, EventArgs e)
  58. {
  59. //throw new NotImplementedException();
  60. }
  61. /// <summary>
  62. /// 条件查询
  63. /// </summary>
  64. /// <param name="sender"></param>
  65. /// <param name="e"></param>
  66. protected virtual void btnConditionQuery_Click(object sender, EventArgs e)
  67. {
  68. //throw new NotImplementedException();
  69. }
  70. /// <summary>
  71. /// 发送短信
  72. /// </summary>
  73. /// <param name="sender"></param>
  74. /// <param name="e"></param>
  75. protected virtual void btnSendSMS_Click(object sender, EventArgs e)
  76. {
  77. //throw new NotImplementedException();
  78. }
  79. /// <summary>
  80. /// 关闭
  81. /// </summary>
  82. /// <param name="sender"></param>
  83. /// <param name="e"></param>
  84. protected virtual void btnColse_Click(object sender, EventArgs e)
  85. {
  86. //throw new NotImplementedException();
  87. }
  88. /// <summary>
  89. /// 选项卡选择
  90. /// </summary>
  91. /// <param name="sender"></param>
  92. /// <param name="e"></param>
  93. protected virtual void tabPanel_SelectedIndexChanged(object sender, EventArgs e)
  94. {
  95. //throw new NotImplementedException();
  96. }
  97. /// <summary>
  98. /// 行添加时发生改变
  99. /// </summary>
  100. /// <param name="sender"></param>
  101. /// <param name="e"></param>
  102. protected virtual void dgvData1_RowsAdded(object sender, DataGridViewRowsAddedEventArgs e)
  103. {
  104. //throw new NotImplementedException();
  105. }
  106. /// <summary>
  107. /// 全部双击事件
  108. /// </summary>
  109. /// <param name="sender"></param>
  110. /// <param name="e"></param>
  111. protected virtual void dgvData1_MouseDoubleClick(object sender, MouseEventArgs e)
  112. {
  113. //throw new NotImplementedException();
  114. }
  115. /// <summary>
  116. /// 已达未返双击事件
  117. /// </summary>
  118. /// <param name="sender"></param>
  119. /// <param name="e"></param>
  120. protected virtual void dgvData3_MouseDoubleClick(object sender, MouseEventArgs e)
  121. {
  122. //throw new NotImplementedException();
  123. }
  124. /// <summary>
  125. /// 查询框回车键
  126. /// </summary>
  127. /// <param name="sender"></param>
  128. /// <param name="e"></param>
  129. protected virtual void txtQuery_KeyDown(object sender, KeyEventArgs e)
  130. {
  131. //throw new NotImplementedException();
  132. }
  133. }
  134. }