123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace IntelligentControlForsx.Start
- {
- public partial class StartForm : Form, ISplashForm
- {
- public StartForm()
- {
- InitializeComponent();
- }
- public void SetStatusInfo(string newStatusInfo)
- {
- lbStatusInfo.Text = newStatusInfo;
- }
- private void StartForm_FormClosed(object sender, FormClosedEventArgs e)
- {
- MessageBox.Show("启动页面关闭");
- }
- }
- }
|