StartForm.cs 687 B

123456789101112131415161718192021222324252627282930
  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.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace IntelligentControlForsx.Start
  11. {
  12. public partial class StartForm : Form, ISplashForm
  13. {
  14. public StartForm()
  15. {
  16. InitializeComponent();
  17. }
  18. public void SetStatusInfo(string newStatusInfo)
  19. {
  20. lbStatusInfo.Text = newStatusInfo;
  21. }
  22. private void StartForm_FormClosed(object sender, FormClosedEventArgs e)
  23. {
  24. MessageBox.Show("启动页面关闭");
  25. }
  26. }
  27. }