FrmAllWages.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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.FinancialManagement.Payroll
  11. {
  12. public partial class FrmAllWages : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmAllWages()
  15. {
  16. InitializeComponent();
  17. this.IsCustomScrollBar = true;
  18. this.Load += FrmAllWages_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. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  28. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  29. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  30. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  31. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  32. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  33. dgv.RefreshTheme();
  34. this.Shown += FrmAllWages_Shown;
  35. lblPrice.Visible = false;
  36. }
  37. protected virtual void FrmAllWages_Shown(object sender, EventArgs e)
  38. {
  39. //throw new NotImplementedException();
  40. }
  41. protected virtual void btnExport_Click(object sender, EventArgs e)
  42. {
  43. //throw new NotImplementedException();
  44. }
  45. protected virtual void btnClose_Click(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. protected virtual void btnViewDetails_Click(object sender, EventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. protected virtual void txtTimeEnd_Leave(object sender, EventArgs e)
  54. {
  55. //throw new NotImplementedException();
  56. }
  57. protected virtual void txtTimeEnd_Enter(object sender, EventArgs e)
  58. {
  59. //throw new NotImplementedException();
  60. }
  61. protected virtual void txtTimeStart_Leave(object sender, EventArgs e)
  62. {
  63. //throw new NotImplementedException();
  64. }
  65. protected virtual void txtTimeStart_Enter(object sender, EventArgs e)
  66. {
  67. //throw new NotImplementedException();
  68. }
  69. protected virtual void btnSelect_Click(object sender, EventArgs e)
  70. {
  71. //throw new NotImplementedException();
  72. }
  73. protected virtual void FrmAllWages_Load(object sender, EventArgs e)
  74. {
  75. //throw new NotImplementedException();
  76. }
  77. }
  78. }