IpsAboutForm.cs 514 B

12345678910111213141516171819202122
  1. using DevExpress.XtraEditors;
  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 Ips.Sps
  12. {
  13. public partial class IpsAboutForm : DevExpress.XtraEditors.XtraForm
  14. {
  15. public IpsAboutForm()
  16. {
  17. InitializeComponent();
  18. labelCopyright.Text = $"Copyright(c) 2022-{DateTime.Now.Year}";
  19. }
  20. }
  21. }