FrmObjectSet.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.CustomerSatisfactionRecord.Satisfaction
  11. {
  12. public partial class FrmObjectSet : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmObjectSet()
  15. {
  16. InitializeComponent();
  17. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  18. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. this.dgv.RefreshTheme();
  21. this.Shown += FrmObjectSet_Shown;
  22. this.btnSave.Click += btnSave_Click;
  23. this.btnCanle.Click += btnCanle_Click;
  24. this.btnDelete.Click += btnDelete_Click;
  25. }
  26. protected virtual void btnDelete_Click(object sender, EventArgs e)
  27. {
  28. //throw new NotImplementedException();
  29. }
  30. protected virtual void btnCanle_Click(object sender, EventArgs e)
  31. {
  32. //throw new NotImplementedException();
  33. }
  34. protected virtual void btnSave_Click(object sender, EventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. protected virtual void FrmObjectSet_Shown(object sender, EventArgs e)
  39. {
  40. //throw new NotImplementedException();
  41. }
  42. }
  43. }