using LYFZ.ComponentLibrary; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace LYFZ.Software.UI.SMSManagement { public partial class FrmSMSProcess : LYFZ.ComponentLibrary.BaseContentsFormMain { public FrmSMSProcess() { InitializeComponent(); this.Load += FrmSMSProcess_Load; } void FrmSMSProcess_Load(object sender, EventArgs e) { this.IsCustomScrollBar = true; UcNavigationTool.LabTitle = "流程短信"; panelEx2.BorderStyle = BorderStyle.FixedSingle; panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor; panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor; panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor; this.dgvOrderProcessCustomer.RefreshTheme(); } } }