frmBackupReminder.cs 902 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.UI
  10. {
  11. public partial class frmBackupReminder : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public frmBackupReminder()
  14. {
  15. InitializeComponent();
  16. InitializeBakDate();
  17. }
  18. /// <summary>
  19. /// 初化备份日期
  20. /// </summary>
  21. void InitializeBakDate()
  22. {
  23. for (int i = 1; i <= 7; i++)
  24. {
  25. try
  26. {
  27. this.gpBackupReminder.Controls["lbdate" + i.ToString()].Text = SDateTime.Now.AddDays(-8 + i).ToString("yyyy-MM-dd");
  28. }
  29. catch
  30. {
  31. }
  32. }
  33. }
  34. }
  35. }