FrmRentalManagement.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.Dresses.DressManagement.Rental
  11. {
  12. public partial class FrmRentalManagement : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmRentalManagement()
  15. {
  16. InitializeComponent();
  17. this.IsCustomScrollBar = true;
  18. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  19. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  21. panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
  22. this.dgv.RefreshTheme();
  23. this.Shown += FrmRentalManagement_Shown;
  24. this.btnSlect.Click += btnSlect_Click;
  25. this.btnDelete.Click += btnDelete_Click;
  26. this.btnUpdate.Click += btnUpdate_Click;
  27. this.btnPrint.Click += btnPrint_Click;
  28. this.btnAlsoback.Click += btnAlsoback_Click;
  29. this.btnReceivables.Click += btnReceivables_Click;
  30. this.btnRefund.Click += btnRefund_Click;
  31. }
  32. protected virtual void btnRefund_Click(object sender, EventArgs e)
  33. {
  34. //throw new NotImplementedException();
  35. }
  36. protected virtual void btnReceivables_Click(object sender, EventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. protected virtual void btnAlsoback_Click(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. protected virtual void btnPrint_Click(object sender, EventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. protected virtual void btnUpdate_Click(object sender, EventArgs e)
  49. {
  50. //throw new NotImplementedException();
  51. }
  52. protected virtual void btnDelete_Click(object sender, EventArgs e)
  53. {
  54. //throw new NotImplementedException();
  55. }
  56. protected virtual void btnSlect_Click(object sender, EventArgs e)
  57. {
  58. //throw new NotImplementedException();
  59. }
  60. protected virtual void FrmRentalManagement_Shown(object sender, EventArgs e)
  61. {
  62. //throw new NotImplementedException();
  63. }
  64. }
  65. }