FrmValetManagement.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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.Valet
  11. {
  12. public partial class FrmValetManagement : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmValetManagement()
  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 += FrmValetManagement_Shown;
  24. this.btnSlect.Click += btnSlect_Click;
  25. this.btnUpdate.Click += btnUpdate_Click;
  26. this.btnDelete.Click += btnDelete_Click;
  27. this.btnPrint.Click += btnPrint_Click;
  28. this.btnAlsoback.Click += btnAlsoback_Click;
  29. }
  30. protected virtual void btnAlsoback_Click(object sender, EventArgs e)
  31. {
  32. //throw new NotImplementedException();
  33. }
  34. protected virtual void btnPrint_Click(object sender, EventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. protected virtual void btnDelete_Click(object sender, EventArgs e)
  39. {
  40. //throw new NotImplementedException();
  41. }
  42. protected virtual void btnUpdate_Click(object sender, EventArgs e)
  43. {
  44. //throw new NotImplementedException();
  45. }
  46. protected virtual void btnSlect_Click(object sender, EventArgs e)
  47. {
  48. //throw new NotImplementedException();
  49. }
  50. protected virtual void FrmValetManagement_Shown(object sender, EventArgs e)
  51. {
  52. //throw new NotImplementedException();
  53. }
  54. }
  55. }