FrmSatisfactionInvestigation.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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.CustomerSatisfactionRecord.Satisfaction
  11. {
  12. public partial class FrmSatisfactionInvestigation : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmSatisfactionInvestigation()
  15. {
  16. InitializeComponent();
  17. this.dgv1.RefreshTheme();
  18. this.dgv2.RefreshTheme();
  19. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  20. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  21. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  22. panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
  23. this.Shown += FrmSatisfactionInvestigation_Shown;
  24. this.cmbObject.SelectedIndexChanged += cmbObject_SelectedIndexChanged;
  25. this.dgv1.Click += dgv1_Click;
  26. cmSfrs_Scores.SelectedIndexChanged += cmSfrs_Scores_SelectedIndexChanged;
  27. cmSfrs_Scores.Leave += cmSfrs_Scores_Leave;
  28. //cmbSfrs_TotalPoints.SelectedIndexChanged += cmbSfrs_TotalPoints_SelectedIndexChanged;
  29. //cmbSfrs_TotalPoints.Leave += cmbSfrs_TotalPoints_Leave;
  30. this.dgv2.CellMouseDoubleClick += dgv2_CellMouseDoubleClick;
  31. this.btnSave.Click += btnSave_Click;
  32. this.btnClose.Click += btnClose_Click;
  33. }
  34. protected virtual void btnClose_Click(object sender, EventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. protected virtual void btnSave_Click(object sender, EventArgs e)
  39. {
  40. //throw new NotImplementedException();
  41. }
  42. //protected virtual void cmbSfrs_TotalPoints_Leave(object sender, EventArgs e)
  43. //{
  44. // //throw new NotImplementedException();
  45. //}
  46. //protected virtual void cmbSfrs_TotalPoints_SelectedIndexChanged(object sender, EventArgs e)
  47. //{
  48. // //throw new NotImplementedException();
  49. // }
  50. protected virtual void cmSfrs_Scores_Leave(object sender, EventArgs e)
  51. {
  52. //throw new NotImplementedException();
  53. }
  54. protected virtual void dgv2_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
  55. {
  56. //throw new NotImplementedException();
  57. }
  58. protected virtual void cmSfrs_Scores_SelectedIndexChanged(object sender, EventArgs e)
  59. {
  60. //throw new NotImplementedException();
  61. }
  62. protected virtual void dgv1_Click(object sender, EventArgs e)
  63. {
  64. //throw new NotImplementedException();
  65. }
  66. protected virtual void cmbObject_SelectedIndexChanged(object sender, EventArgs e)
  67. {
  68. //throw new NotImplementedException();
  69. }
  70. protected virtual void FrmSatisfactionInvestigation_Shown(object sender, EventArgs e)
  71. {
  72. //throw new NotImplementedException();
  73. }
  74. }
  75. }