FrmIndividualPerformance.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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 FrmIndividualPerformance : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmIndividualPerformance()
  15. {
  16. InitializeComponent();
  17. this.dgv.RefreshTheme();
  18. this.dgvAll.RefreshTheme();
  19. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  20. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  21. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  22. UcNavigationTool.LabTitle = "员工个人总业绩管理";
  23. this.Shown += FrmIndividualPerformance_Shown;
  24. this.cmbItemCategory.ComboBoxTree_NodeMouseClick += cmbItemCategory_ComboBoxTree_NodeMouseClick;
  25. //this.cmbEmployeeName.ComboBoxTree_NodeMouseClick += cmbEmployeeName_ComboBoxTree_NodeMouseClick;
  26. this.cmbProjectTitle.ComboBoxTree_NodeMouseClick += cmbProjectTitle_ComboBoxTree_NodeMouseClick;
  27. this.CtvPak_Name.ComboBoxTree_NodeMouseClick += CtvPak_Name_ComboBoxTree_NodeMouseClick;
  28. this.dgvAll.SortCompare += dgvAll_SortCompare;
  29. this.btnSelect.Click += btnSelect_Click;
  30. this.btnClose.Click += btnClose_Click;
  31. txtTimeStart.TextChanged += txtTimeStart_ValueChanged;
  32. txtTimeEnd.TextChanged += txtTimeEnd_ValueChanged;
  33. cbxDay.Click += cbxDay_Click;
  34. cbxMouth.Click += cbxMouth_Click;
  35. }
  36. void cbxMouth_Click(object sender, EventArgs e)
  37. {
  38. DateTime dtime = new DateTime(txtTimeStart.Value.Year, txtTimeStart.Value.Month, 1);
  39. txtTimeStart.Value = dtime;
  40. dtime = dtime.AddMonths(1);
  41. txtTimeEnd.Value = dtime.AddDays(-1);
  42. }
  43. void cbxDay_Click(object sender, EventArgs e)
  44. {
  45. txtTimeEnd.Value = txtTimeStart.Value;
  46. }
  47. void txtTimeEnd_ValueChanged(object sender, EventArgs e)
  48. {
  49. if(cbxMouth.Checked)
  50. {
  51. DateTime dtime = new DateTime(txtTimeEnd.Value.Year, txtTimeEnd.Value.Month, 1);
  52. txtTimeStart.Value = dtime;
  53. dtime = dtime.AddMonths(1);
  54. txtTimeEnd.Value = dtime.AddDays(-1);
  55. }
  56. else if(cbxDay.Checked)
  57. {
  58. txtTimeStart.Value = txtTimeEnd.Value;
  59. }
  60. }
  61. void txtTimeStart_ValueChanged(object sender, EventArgs e)
  62. {
  63. if (cbxMouth.Checked)
  64. {
  65. DateTime dtime = new DateTime(txtTimeStart.Value.Year, txtTimeStart.Value.Month, 1);
  66. dtime = dtime.AddMonths(1);
  67. txtTimeEnd.Value = dtime.AddDays(-1);
  68. dtime = new DateTime(txtTimeStart.Value.Year, txtTimeStart.Value.Month, 1);
  69. txtTimeStart.Value = dtime;
  70. }
  71. else if (cbxDay.Checked)
  72. {
  73. txtTimeEnd.Value = txtTimeStart.Value;
  74. }
  75. }
  76. protected virtual void btnClose_Click(object sender, EventArgs e)
  77. {
  78. //throw new NotImplementedException();
  79. }
  80. protected virtual void btnSelect_Click(object sender, EventArgs e)
  81. {
  82. //throw new NotImplementedException();
  83. }
  84. protected virtual void dgvAll_SortCompare(object sender, DataGridViewSortCompareEventArgs e)
  85. {
  86. //throw new NotImplementedException();
  87. }
  88. protected virtual void CtvPak_Name_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  89. {
  90. //throw new NotImplementedException();
  91. }
  92. protected virtual void cmbProjectTitle_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  93. {
  94. //throw new NotImplementedException();
  95. }
  96. protected virtual void cmbEmployeeName_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  97. {
  98. //throw new NotImplementedException();
  99. }
  100. protected virtual void cmbItemCategory_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  101. {
  102. //throw new NotImplementedException();
  103. }
  104. protected virtual void FrmIndividualPerformance_Shown(object sender, EventArgs e)
  105. {
  106. //throw new NotImplementedException();
  107. }
  108. }
  109. }