| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- using DevExpress.LookAndFeel;
- using DevExpress.XtraSplashScreen;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace Ips.Sps
- {
- public partial class SpsSplashScreen : SplashScreen
- {
- public SpsSplashScreen()
- {
- InitializeComponent();
- this.labelCopyright.Text = "Copyright © 2022-" + DateTime.Now.Year.ToString();
- labelControl1.Text = SpsConst.AppName;
- }
- #region Overrides
- public override void ProcessCommand(Enum cmd, object arg)
- {
- base.ProcessCommand(cmd, arg);
- }
- #endregion
- public enum SplashScreenCommand
- {
- }
- private void SpsSplashScreen_Load(object sender, EventArgs e)
- {
- }
- }
- }
|