這個方法可以用在任何后臺任務(wù)耗時較長,造成界面“假死”界面控件不更新的情況。
比如要要執(zhí)行的數(shù)據(jù)庫操作是幾十萬條的update語句,如果在click事件里阻塞或者做Thread.Sleep或一個耗時很長的操作,窗口就會無響應(yīng)點不動了。故需要用this.BeginInvoke方法來異步執(zhí)行UI線程的操作,更新界面顯示。
導(dǎo)入按鈕點擊事件
private void btn_import_Click(
object sender,EventArgs e)
{
1.綁定需要執(zhí)行的操作方法
var act = new Action(Import);
act.BeginInvoke(ar => act.EndInvoke(ar),
null);
參數(shù)null可以作為回調(diào)函數(shù)的返回參數(shù)
}
回調(diào)函數(shù)(此處為無返回值函數(shù),也可自行改寫)
private void Import()
{
this.btn_import.Enable =
false;
this.btn_import.Text =
"正在導(dǎo)入...";
DateTime starttime = System.DateTime.now;
try
{
2.執(zhí)行導(dǎo)入數(shù)據(jù)庫操作
如:sqlhelper.ExecuteNonQuerySqlByTransation(sqlstr);
3.執(zhí)行異步操作
this.BeginInvoke(new Action(() =>
{
DateTime endtime = System.DateTime.now;
TimeSpan = ts = endtime.Subtract(starttime);
this.txt_result.Text =
"導(dǎo)入了 " + successcount +
" 條記錄。";
this.lb_time.Text =
"一共消耗了 " + (int)ts.TotalMinutes +
" 分鐘, " + ts.Seconds +
" 秒。";
this.btn_import.Enable =
true;
this.btn_import.Text =
"點擊開始導(dǎo)入";
}));
}
catch(Exception e)
{ }
該文章在 2021/1/29 16:12:10 編輯過