FrmAlsoBack.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 FrmAlsoBack : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmAlsoBack()
  15. {
  16. InitializeComponent();
  17. this.Shown += FrmAlsoBack_Shown;
  18. this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
  19. this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  21. this.panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
  22. this.dgv.RefreshTheme();
  23. this.dgv.CellMouseDoubleClick += dgv_CellMouseDoubleClick;
  24. this.cmbFactory.Leave += cmbFactory_Leave;
  25. this.btnSave.Click += btnSave_Click;
  26. this.btnClose.Click += btnClose_Click;
  27. }
  28. protected virtual void btnClose_Click(object sender, EventArgs e)
  29. {
  30. //throw new NotImplementedException();
  31. }
  32. protected virtual void btnSave_Click(object sender, EventArgs e)
  33. {
  34. //throw new NotImplementedException();
  35. }
  36. protected virtual void cmbFactory_Leave(object sender, EventArgs e)
  37. {
  38. }
  39. protected virtual void dgv_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
  40. {
  41. //throw new NotImplementedException();
  42. }
  43. protected virtual void FrmAlsoBack_Shown(object sender, EventArgs e)
  44. {
  45. //throw new NotImplementedException();
  46. }
  47. }
  48. }