FrmDayFinance.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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 FrmDayFinance : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmDayFinance()
  15. {
  16. InitializeComponent();
  17. this.Load += FrmDayFinance_Load;
  18. this.IsCustomScrollBar = true;
  19. this.btnFinancialAudit.Click += btnFinancialAudit_Click;
  20. this.btnExPort.Click += btnExPort_Click;
  21. this.btnClose.Click += btnClose_Click;
  22. this.numYear.ValueChanged += numYear_ValueChanged;
  23. this.numMonth.ValueChanged += numMonth_ValueChanged;
  24. this.numDay.ValueChanged += numDay_ValueChanged;
  25. this.cmbPay_PaymentMethod.SelectedIndexChanged += cmbPay_PaymentMethod_SelectedIndexChanged;
  26. this.btnPrint.Click += new EventHandler(btnPrint_Click);
  27. UcNavigationTool.LabTitle = "日财务报表";
  28. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  29. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  30. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  31. dgv.RefreshTheme();
  32. this.Shown += FrmDayFinance_Shown;
  33. this.cmbProjectSearch.SelectedValueChanged += cmbProjectSearch_SelectedValueChanged;
  34. this.cmbPay_PaymentMethod.ComboBoxTreeViewEx_TextChanged += cmbPay_PaymentMethod_ComboBoxTreeViewEx_TextChanged;
  35. this.CtvTsorder_Name.ComboBoxTreeViewEx_TextChanged += CtvTsorder_Name_ComboBoxTreeViewEx_TextChanged;
  36. }
  37. protected virtual void CtvTsorder_Name_ComboBoxTreeViewEx_TextChanged(object sender, TreeViewEventArgs e)
  38. {
  39. //throw new NotImplementedException();
  40. }
  41. protected virtual void cmbPay_PaymentMethod_ComboBoxTreeViewEx_TextChanged(object sender, TreeViewEventArgs e)
  42. {
  43. //throw new NotImplementedException();
  44. }
  45. protected virtual void cmbProjectSearch_SelectedValueChanged(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. protected virtual void FrmDayFinance_Shown(object sender, EventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. protected virtual void btnPrint_Click(object sender, EventArgs e)
  54. {
  55. //throw new NotImplementedException();
  56. }
  57. protected virtual void cmbPay_PaymentMethod_SelectedIndexChanged(object sender, EventArgs e)
  58. {
  59. //throw new NotImplementedException();
  60. }
  61. protected virtual void numDay_ValueChanged(object sender, EventArgs e)
  62. {
  63. //throw new NotImplementedException();
  64. }
  65. protected virtual void numMonth_ValueChanged(object sender, EventArgs e)
  66. {
  67. //throw new NotImplementedException();
  68. }
  69. protected virtual void numYear_ValueChanged(object sender, EventArgs e)
  70. {
  71. //throw new NotImplementedException();
  72. }
  73. protected virtual void btnClose_Click(object sender, EventArgs e)
  74. {
  75. //throw new NotImplementedException();
  76. }
  77. protected virtual void btnExPort_Click(object sender, EventArgs e)
  78. {
  79. //throw new NotImplementedException();
  80. }
  81. protected virtual void btnFinancialAudit_Click(object sender, EventArgs e)
  82. {
  83. //throw new NotImplementedException();
  84. }
  85. protected virtual void FrmDayFinance_Load(object sender, EventArgs e)
  86. {
  87. //throw new NotImplementedException();
  88. }
  89. }
  90. }