BackgroundThreadFunction()
{
Invoke(new ShowMessage(Show), strAccount, e.Message);
}
private delegate void ShowMessage(string strAccount, string Exception);
private void Show(string strAccount, string Exception)
{
lblInfo.Text = "获取" + strAccount;
lblException.Text =strAccount + " " + Exception;
}