FrmOtherIncomeEntry.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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.OtherIncome
  11. {
  12. public partial class FrmOtherIncomeEntry : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmOtherIncomeEntry()
  15. {
  16. InitializeComponent();
  17. this.Load += FrmOtherIncomeEntry_Load;
  18. this.btnSet.Click += btnSet_Click;
  19. this.btnSave.Click += btnSave_Click;
  20. this.btnCanle.Click += btnCanle_Click;
  21. this.txtOiae_Money.KeyPress += txtOiae_Money_KeyPress;
  22. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  23. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  24. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  25. this.btnUpdateTime.Click += btnUpdateTime_Click;
  26. }
  27. protected virtual void btnUpdateTime_Click(object sender, EventArgs e)
  28. {
  29. //throw new NotImplementedException();
  30. }
  31. protected virtual void txtOiae_Money_KeyPress(object sender, KeyPressEventArgs e)
  32. {
  33. //throw new NotImplementedException();
  34. }
  35. protected virtual void btnCanle_Click(object sender, EventArgs e)
  36. {
  37. //throw new NotImplementedException();
  38. }
  39. protected virtual void btnSave_Click(object sender, EventArgs e)
  40. {
  41. //throw new NotImplementedException();
  42. }
  43. protected virtual void btnupdate_Click(object sender, EventArgs e)
  44. {
  45. //throw new NotImplementedException();
  46. }
  47. protected virtual void btnSet_Click(object sender, EventArgs e)
  48. {
  49. //throw new NotImplementedException();
  50. }
  51. protected virtual void FrmOtherIncomeEntry_Load(object sender, EventArgs e)
  52. {
  53. //throw new NotImplementedException();
  54. }
  55. }
  56. }