OrderDeletePhotosFormMain.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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.StudioDataSet
  11. {
  12. public partial class OrderDeletePhotosFormMain : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public OrderDeletePhotosFormMain()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  20. }
  21. /// <summary>
  22. /// 定义列表属性
  23. /// </summary>
  24. public LYFZ.ComponentLibrary.DataGridViewEc DataGridViewEx1
  25. {
  26. get { return this.dgvData; }
  27. set { this.dgvData = value; }
  28. }
  29. /// <summary>
  30. /// 定义分页控件属性
  31. /// </summary>
  32. public LYFZ.UCPager.ucPagerEx UcPagerEx1
  33. {
  34. get { return this.ucPagerEx1; }
  35. set { this.ucPagerEx1 = value; }
  36. }
  37. }
  38. }