1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| #region
|
| using System.Windows.Forms;
| using CSFrameworkV5.Interfaces;
|
| #endregion
|
| namespace CSFrameworkV5.Library.CommonClass
| {
| /// <summary>
| /// 加载模块时进度显示
| /// </summary>
| public class LoadStatus : IMsg
| {
| private Label _lbl;
|
| public LoadStatus(Label lbl)
| {
| _lbl = lbl;
| }
|
| public void UpdateMessage(string msg)
| {
| _lbl.Text = msg;
| _lbl.Update();
| }
| }
| }
|
|