FrmRecord.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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.DressView
  11. {
  12. public partial class FrmRecord : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmRecord()
  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 += FrmRecord_Shown;
  24. this.radAll.Click += radAll_Click;
  25. this.radNotyet.Click += radNotyet_Click;
  26. }
  27. protected virtual void radNotyet_Click(object sender, EventArgs e)
  28. {
  29. //throw new NotImplementedException();
  30. }
  31. protected virtual void radAll_Click(object sender, EventArgs e)
  32. {
  33. //throw new NotImplementedException();
  34. }
  35. protected virtual void FrmRecord_Shown(object sender, EventArgs e)
  36. {
  37. }
  38. }
  39. }