FrmCustomerSatisfactionRecord.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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
  11. {
  12. public partial class FrmCustomerSatisfactionRecord : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmCustomerSatisfactionRecord()
  15. {
  16. InitializeComponent();
  17. //this.IsCustomScrollBar = true;
  18. this.Load += new EventHandler(FrmCustomerSatisfactionRecord_Load);
  19. this.btnSelect.Click += new EventHandler(btnSelect_Click);
  20. this.btnClose.Click += new EventHandler(btnClose_Click);
  21. this.tab.SelectedIndexChanged += new EventHandler(tab_SelectedIndexChanged);
  22. panelEx3.BorderStyle = BorderStyle.FixedSingle;
  23. panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
  24. panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  25. this.dgv1.RefreshTheme();
  26. this.dgv2.RefreshTheme();
  27. this.dgv3.RefreshTheme();
  28. this.dgv4.RefreshTheme();
  29. this.dgv5.RefreshTheme();
  30. this.dgv6.RefreshTheme();
  31. this.dgv7.RefreshTheme();
  32. this.dgv8.RefreshTheme();
  33. tabPage1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  34. tabPage2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  35. UcNavigationTool.LabTitle = "满意度调查";
  36. this.Shown += FrmCustomerSatisfactionRecord_Shown;
  37. this.btnDc.Click += btnDc_Click;
  38. this.tab.SelectedIndexChanged+=tab_SelectedIndexChanged;
  39. this.btnSet.Click += btnSet_Click;
  40. }
  41. protected virtual void btnSet_Click(object sender, EventArgs e)
  42. {
  43. //throw new NotImplementedException();
  44. }
  45. protected virtual void btnDc_Click(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. protected virtual void FrmCustomerSatisfactionRecord_Shown(object sender, EventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. protected virtual void pagerEx2_EventPaging(EventArgs e)
  54. {
  55. //throw new NotImplementedException();
  56. }
  57. protected virtual void pagerEx1_EventPaging(EventArgs e)
  58. {
  59. //throw new NotImplementedException();
  60. }
  61. protected virtual void tab_SelectedIndexChanged(object sender, EventArgs e)
  62. {
  63. //throw new NotImplementedException();
  64. }
  65. protected virtual void btnClose_Click(object sender, EventArgs e)
  66. {
  67. }
  68. protected virtual void btnSelect_Click(object sender, EventArgs e)
  69. {
  70. }
  71. protected virtual void FrmCustomerSatisfactionRecord_Load(object sender, EventArgs e)
  72. {
  73. }
  74. }
  75. }