FrmSaleManagement.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 FrmSaleManagement : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmSaleManagement()
  15. {
  16. InitializeComponent();
  17. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  18. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
  21. this.dgv.RefreshTheme();
  22. this.Shown += FrmSaleManagement_Shown;
  23. this.btnSlect.Click += btnSlect_Click;
  24. this.btnDelete.Click += btnDelete_Click;
  25. this.btnUpdate.Click += btnUpdate_Click;
  26. this.btnReceivables.Click += btnReceivables_Click;
  27. this.btnPrint.Click += btnPrint_Click;
  28. }
  29. protected virtual void btnPrint_Click(object sender, EventArgs e)
  30. {
  31. //throw new NotImplementedException();
  32. }
  33. protected virtual void btnReceivables_Click(object sender, EventArgs e)
  34. {
  35. //throw new NotImplementedException();
  36. }
  37. protected virtual void btnUpdate_Click(object sender, EventArgs e)
  38. {
  39. //throw new NotImplementedException();
  40. }
  41. protected virtual void btnDelete_Click(object sender, EventArgs e)
  42. {
  43. //throw new NotImplementedException();
  44. }
  45. protected virtual void btnSlect_Click(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. protected virtual void FrmSaleManagement_Shown(object sender, EventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. }
  54. }