FrmTheScenery.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.InitialSet.PackagesGoods
  11. {
  12. public partial class FrmTheScenery : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmTheScenery()
  15. {
  16. InitializeComponent();
  17. this.Load += new EventHandler(FrmTheScenery_Load);
  18. this.btnRight.Click += new EventHandler(btnRight_Click);
  19. this.btnLeft.Click += new EventHandler(btnLeft_Click);
  20. this.btnSave.Click += new EventHandler(btnSave_Click);
  21. this.dgv.DoubleClick += new EventHandler(dgv_DoubleClick);
  22. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  23. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  24. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  25. dgv.RefreshTheme();
  26. }
  27. protected virtual void dgv_DoubleClick(object sender, EventArgs e)
  28. {
  29. }
  30. protected virtual void btnSave_Click(object sender, EventArgs e)
  31. {
  32. }
  33. protected virtual void btnRight_Click(object sender, EventArgs e)
  34. {
  35. }
  36. protected virtual void btnLeft_Click(object sender, EventArgs e)
  37. {
  38. }
  39. protected virtual void FrmTheScenery_Load(object sender, EventArgs e)
  40. {
  41. }
  42. }
  43. }