FrmCosting.cs 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 FrmCosting : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmCosting()
  15. {
  16. InitializeComponent();
  17. // this.IsCustomScrollBar = true;
  18. this.Load += new EventHandler(FrmCosting_Load);
  19. this.txtTsorder_OpenSingle.ComboBoxTreeViewEx_TextChanged += new ComponentLibrary.ComboBoxTreeViewEx.ComboBoxTreeView_TextChanged(txtTsorder_OpenSingle_ComboBoxTreeViewEx_TextChanged);
  20. this.btnSelect.Click += new EventHandler(btnSelect_Click);
  21. this.dgv.CellClick += new DataGridViewCellEventHandler(dgv_CellClick);
  22. this.btnExPort.Click += new EventHandler(btnExPort_Click);
  23. this.btnClose.Click += new EventHandler(btnClose_Click);
  24. UcNavigationTool.LabTitle = "成本核算";
  25. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  26. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  27. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  28. dgv.RefreshTheme();
  29. this.Shown += FrmCosting_Shown;
  30. txtTimeStart.Leave += txtTimeStart_Leave;
  31. txtTimeEnd.Leave += txtTimeEnd_Leave;
  32. txtTimeStart.Enter += txtTimeStart_Enter;
  33. txtTimeEnd.Enter += txtTimeEnd_Enter;
  34. }
  35. protected virtual void txtTimeEnd_Enter(object sender, EventArgs e)
  36. {
  37. //throw new NotImplementedException();
  38. }
  39. protected virtual void txtTimeStart_Enter(object sender, EventArgs e)
  40. {
  41. //throw new NotImplementedException();
  42. }
  43. protected virtual void txtTimeEnd_Leave(object sender, EventArgs e)
  44. {
  45. //throw new NotImplementedException();
  46. }
  47. protected virtual void txtTimeStart_Leave(object sender, EventArgs e)
  48. {
  49. //throw new NotImplementedException();
  50. }
  51. protected virtual void FrmCosting_Shown(object sender, EventArgs e)
  52. {
  53. //throw new NotImplementedException();
  54. }
  55. protected virtual void btnClose_Click(object sender, EventArgs e)
  56. {
  57. //throw new NotImplementedException();
  58. }
  59. protected virtual void btnExPort_Click(object sender, EventArgs e)
  60. {
  61. //throw new NotImplementedException();
  62. }
  63. protected virtual void dgv_CellClick(object sender, DataGridViewCellEventArgs e)
  64. {
  65. //throw new NotImplementedException();
  66. }
  67. protected virtual void btnSelect_Click(object sender, EventArgs e)
  68. {
  69. //throw new NotImplementedException();
  70. }
  71. protected virtual void txtTsorder_OpenSingle_ComboBoxTreeViewEx_TextChanged(object sender, TreeViewEventArgs e)
  72. {
  73. // throw new NotImplementedException();
  74. }
  75. protected virtual void FrmCosting_Load(object sender, EventArgs e)
  76. {
  77. }
  78. }
  79. }