frmTimeMain.cs 1017 B

12345678910111213141516171819202122232425262728
  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.Threading.Tasks;
  10. using System.Windows.Forms;
  11. namespace LYFZ.Software.UI.TimeAndAttendance
  12. {
  13. public partial class frmTimeMain : LYFZ.ComponentLibrary.BaseContentsFormMain
  14. {
  15. public frmTimeMain()
  16. {
  17. InitializeComponent();
  18. this.UcNavigationTool.LabTitle = "考勤记录";
  19. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  21. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  22. this.panelEx4.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  23. this.panelLastNextWeek.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  24. this.dtpYearMonth.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  25. }
  26. }
  27. }