FrmStatisticalInquiryAllWages.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 FrmStatisticalInquiryAllWages : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmStatisticalInquiryAllWages()
  15. {
  16. InitializeComponent();
  17. //this.IsCustomScrollBar = true;
  18. this.Load += new EventHandler(FrmStatisticalInquiryAllWages_Load);
  19. this.btnSelect.Click += btnSelect_Click;
  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.btnViewDetails.Click += btnViewDetails_Click;
  25. this.btnClose.Click += btnClose_Click;
  26. this.btnExport.Click += btnExport_Click;
  27. UcNavigationTool.LabTitle = "工资管理";
  28. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  29. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  30. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  31. panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
  32. dgv.RefreshTheme();
  33. this.Shown += FrmStatisticalInquiryAllWages_Shown;
  34. this.btnPrint.Click += btnPrint_Click;
  35. }
  36. protected virtual void btnPrint_Click(object sender, EventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. protected virtual void FrmStatisticalInquiryAllWages_Shown(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. protected virtual void btnExport_Click(object sender, EventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. protected virtual void btnClose_Click(object sender, EventArgs e)
  49. {
  50. //throw new NotImplementedException();
  51. }
  52. protected virtual void btnViewDetails_Click(object sender, EventArgs e)
  53. {
  54. //throw new NotImplementedException();
  55. }
  56. protected virtual void txtTimeEnd_Leave(object sender, EventArgs e)
  57. {
  58. //throw new NotImplementedException();
  59. }
  60. protected virtual void txtTimeEnd_Enter(object sender, EventArgs e)
  61. {
  62. //throw new NotImplementedException();
  63. }
  64. protected virtual void txtTimeStart_Leave(object sender, EventArgs e)
  65. {
  66. //throw new NotImplementedException();
  67. }
  68. protected virtual void txtTimeStart_Enter(object sender, EventArgs e)
  69. {
  70. //throw new NotImplementedException();
  71. }
  72. protected virtual void btnSelect_Click(object sender, EventArgs e)
  73. {
  74. //throw new NotImplementedException();
  75. }
  76. protected virtual void FrmStatisticalInquiryAllWages_Load(object sender, EventArgs e)
  77. {
  78. //throw new NotImplementedException();
  79. }
  80. }
  81. }