我创建了一个工作SplashScreen/LoadingScreen
.
我使用以下代码来显示和关闭 LoadinScreen:
LoadingScreen LS = new LoadingScreen();
LS.Show();
databaseThread = new Thread(CheckDataBase);
databaseThread.Start();
databaseThread.Join();
LS.Close();
这段代码对我来说做得很好,显示和关闭LoadingScreen
.
问题是:我在 上得到了一些文字LoadingScreen
,上面写着:Loading Application...
我想创建一个计时器,让文本(标签)末尾的点执行以下操作:
Loading Application.
1 秒后:
Loading Application..
1 秒后:
Loading Application...
我想我timer
需要Load_event
在LoadingScreen form
.
我怎样才能做到这一点?