FrmSMSProcess.cs 1016 B

1234567891011121314151617181920212223242526272829303132333435
  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.SMSManagement
  11. {
  12. public partial class FrmSMSProcess : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmSMSProcess()
  15. {
  16. InitializeComponent();
  17. this.Load += FrmSMSProcess_Load;
  18. }
  19. void FrmSMSProcess_Load(object sender, EventArgs e)
  20. {
  21. this.IsCustomScrollBar = true;
  22. UcNavigationTool.LabTitle = "流程短信";
  23. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  24. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  25. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  26. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  27. this.dgvOrderProcessCustomer.RefreshTheme();
  28. }
  29. }
  30. }