SpsSplashScreen.cs 884 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using DevExpress.LookAndFeel;
  2. using DevExpress.XtraSplashScreen;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Data;
  7. using System.Drawing;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace Ips.Sps
  11. {
  12. public partial class SpsSplashScreen : SplashScreen
  13. {
  14. public SpsSplashScreen()
  15. {
  16. InitializeComponent();
  17. this.labelCopyright.Text = "Copyright © 2022-" + DateTime.Now.Year.ToString();
  18. labelControl1.Text = SpsConst.AppName;
  19. }
  20. #region Overrides
  21. public override void ProcessCommand(Enum cmd, object arg)
  22. {
  23. base.ProcessCommand(cmd, arg);
  24. }
  25. #endregion
  26. public enum SplashScreenCommand
  27. {
  28. }
  29. private void SpsSplashScreen_Load(object sender, EventArgs e)
  30. {
  31. }
  32. }
  33. }