frmWageQueryConfig.cs 800 B

123456789101112131415161718192021222324
  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.FinancialManagement
  11. {
  12. public partial class frmWageQueryConfig : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public frmWageQueryConfig()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.groupBoxEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.UcNavigationTool.LabTitle = "工资管理—员工工资统计查询方案设置";
  20. this.lbMsg.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  21. }
  22. }
  23. }