FrmDressView.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 FrmDressView : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmDressView()
  15. {
  16. InitializeComponent();
  17. this.IsCustomScrollBar = true;
  18. panelEx3.BorderStyle = BorderStyle.FixedSingle;
  19. panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  21. UcNavigationTool.LabTitle = "礼服查看";
  22. this.dgv.RefreshTheme();
  23. this.Shown += FrmDressView_Shown;
  24. this.btnSlect.Click += btnSlect_Click;
  25. this.btnRecord.Click += btnRecord_Click;
  26. }
  27. protected virtual void btnRecord_Click(object sender, EventArgs e)
  28. {
  29. //throw new NotImplementedException();
  30. }
  31. protected virtual void btnSlect_Click(object sender, EventArgs e)
  32. {
  33. //throw new NotImplementedException();
  34. }
  35. protected virtual void FrmDressView_Shown(object sender, EventArgs e)
  36. {
  37. //throw new NotImplementedException();
  38. }
  39. }
  40. }