FrmStatisticalInquiryPayroll.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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.StatisticalInquiry
  11. {
  12. public partial class FrmStatisticalInquiryPayroll : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmStatisticalInquiryPayroll()
  15. {
  16. InitializeComponent();
  17. this.IsCustomScrollBar = true;
  18. this.Load += new EventHandler(FrmStatisticalInquiryPayroll_Load);
  19. this.txtTsorder_OpenSingle.ComboBoxTreeViewEx_TextChanged += txtTsorder_OpenSingle_ComboBoxTreeViewEx_TextChanged;
  20. this.txtTimeStart.Enter += txtTimeStart_Enter;
  21. this.txtTimeStart.Leave += txtTimeStart_Leave;
  22. this.txtTimeEnd.Enter += txtTimeEnd_Enter;
  23. this.txtTimeEnd.Leave += txtTimeEnd_Leave;
  24. this.btnSelect.Click += btnSelect_Click;
  25. this.btnClose.Click += btnClose_Click;
  26. this.btnExport1.Click += btnExport1_Click;
  27. this.btnExport2.Click += btnExport2_Click;
  28. this.btnExport3.Click += btnExport3_Click;
  29. this.btnExport4.Click += btnExport4_Click;
  30. //panelEx1.BorderStyle = BorderStyle.FixedSingle;
  31. //panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  32. //panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  33. panelEx3.BorderStyle = BorderStyle.FixedSingle;
  34. panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
  35. panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  36. this.dgv1.RefreshTheme();
  37. this.dgv2.RefreshTheme();
  38. this.dgv3.RefreshTheme();
  39. this.dgv4.RefreshTheme();
  40. this.Shown += FrmStatisticalInquiryPayroll_Shown;
  41. }
  42. protected virtual void FrmStatisticalInquiryPayroll_Shown(object sender, EventArgs e)
  43. {
  44. //throw new NotImplementedException();
  45. }
  46. protected virtual void btnExport4_Click(object sender, EventArgs e)
  47. {
  48. //throw new NotImplementedException();
  49. }
  50. protected virtual void btnExport3_Click(object sender, EventArgs e)
  51. {
  52. //throw new NotImplementedException();
  53. }
  54. protected virtual void btnExport2_Click(object sender, EventArgs e)
  55. {
  56. //throw new NotImplementedException();
  57. }
  58. protected virtual void btnExport1_Click(object sender, EventArgs e)
  59. {
  60. //throw new NotImplementedException();
  61. }
  62. protected virtual void btnClose_Click(object sender, EventArgs e)
  63. {
  64. //throw new NotImplementedException();
  65. }
  66. protected virtual void btnSelect_Click(object sender, EventArgs e)
  67. {
  68. //throw new NotImplementedException();
  69. }
  70. protected virtual void txtTimeEnd_Leave(object sender, EventArgs e)
  71. {
  72. //throw new NotImplementedException();
  73. }
  74. protected virtual void txtTimeEnd_Enter(object sender, EventArgs e)
  75. {
  76. //throw new NotImplementedException();
  77. }
  78. protected virtual void txtTimeStart_Leave(object sender, EventArgs e)
  79. {
  80. //throw new NotImplementedException();
  81. }
  82. protected virtual void txtTimeStart_Enter(object sender, EventArgs e)
  83. {
  84. //throw new NotImplementedException();
  85. }
  86. protected virtual void txtTsorder_OpenSingle_ComboBoxTreeViewEx_TextChanged(object sender, EventArgs e)
  87. {
  88. //throw new NotImplementedException();
  89. }
  90. protected virtual void FrmStatisticalInquiryPayroll_Load(object sender, EventArgs e)
  91. {
  92. //throw new NotImplementedException();
  93. }
  94. }
  95. }