FrmOldCustomer.cs 803 B

1234567891011121314151617181920212223242526
  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.Customers
  11. {
  12. public partial class FrmOldCustomer : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmOldCustomer()
  15. {
  16. InitializeComponent();
  17. this.dgv.RefreshTheme();
  18. this.UcNavigationTool.LabTitle = "老客户";
  19. this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
  20. this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  21. this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  22. this.IsCustomScrollBar = true;
  23. }
  24. }
  25. }