FrmDressEntry.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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
  11. {
  12. public partial class FrmDressEntry : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmDressEntry()
  15. {
  16. InitializeComponent();
  17. this.IsCustomScrollBar = true;
  18. panelEx3.BorderStyle = BorderStyle.FixedSingle;
  19. panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  21. this.Shown += FrmDressEntry_Shown;
  22. this.btnAdd.Click += btnAdd_Click;
  23. UcNavigationTool.LabTitle = "礼服录入";
  24. this.dgv.RefreshTheme();
  25. this.btnUpdate.Click += btnUpdate_Click;
  26. this.dgv.DoubleClick += dgv_DoubleClick;
  27. this.btnDelete.Click += btnDelete_Click;
  28. this.btnExport.Click += btnExport_Click;
  29. this.btnSlect.Click += btnSlect_Click;
  30. }
  31. protected virtual void btnSlect_Click(object sender, EventArgs e)
  32. {
  33. //throw new NotImplementedException();
  34. }
  35. protected virtual void btnExport_Click(object sender, EventArgs e)
  36. {
  37. //throw new NotImplementedException();
  38. }
  39. protected virtual void btnDelete_Click(object sender, EventArgs e)
  40. {
  41. //throw new NotImplementedException();
  42. }
  43. protected virtual void dgv_DoubleClick(object sender, EventArgs e)
  44. {
  45. //throw new NotImplementedException();
  46. }
  47. protected virtual void btnUpdate_Click(object sender, EventArgs e)
  48. {
  49. //throw new NotImplementedException();
  50. }
  51. protected virtual void btnAdd_Click(object sender, EventArgs e)
  52. {
  53. //throw new NotImplementedException();
  54. }
  55. protected virtual void FrmDressEntry_Shown(object sender, EventArgs e)
  56. {
  57. //throw new NotImplementedException();
  58. }
  59. }
  60. }