StatusStrip 显示问题
类库:namespace CompareDAL
{
public class TableManager
{
#region 列出一个数据库中所有的表名
public ArrayList ListAllTablesNames(Database DB)
{
ArrayList ArLst = new ArrayList();
for (int TbCount = 0; TbCount < DB.Tables.Count; TbCount++)
{
ArLst.Add(DB.Tables[TbCount].Name.ToString());
}
return ArLst;
}
#endregion
}
}
窗体:
namespace CompareDB
{
public partial class CompareDatabase : Form
{
TableManager TbMg = new TableManager();
TargetAryLst = TbMg.ListAllTablesNames(TargetDB);
//想要在窗体上实时显示类似“正在扫描<表名>......”,也就是ListAllTablesNames()中for执行一次,就会有个表名,把这个表名显示到状态栏上,不知道该怎么实现
toolStripStatusLabel1.Text = “表名”;
}
}
请高手指教!