在WinForm中,直接使用自己创建的线程去使用窗体中的控件,是不安全的,不允许这样操作,以用委托的方式进行处理:
delegate void WriteLabelText(string str, Color color);
private void showSqlConnResult(string msg, Color color)
{
this.labelSqlConnStatus.Text = msg;
this.labelSqlConnStatus.ForeColor = color;
this.buttonTestSqlConn.Enabled = true;
}
private void threadTestConn()
{
string result = "连接数据库成功。";
Color color = Color.Green;
System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection(this.textBoxSqlConnString.Text.Trim());
try
{
conn.Open();
conn.Close();
}
catch (Exception E)
{
result = E.Message;
color = Color.Red;
}
WriteLabelText wt = new WriteLabelText(showSqlConnResult);
this.Invoke(wt, result, color);
}
private void buttonTestSqlConn_Click(object sender, EventArgs e)
{
this.buttonTestSqlConn.Enabled = false;
this.labelSqlConnStatus.ForeColor = Color.Blue;
this.labelSqlConnStatus.Text = "正在测试连接数据库……";
System.Threading.Thread thread = new System.Threading.Thread(new System.Threading.ThreadStart(this.threadTestConn));
thread.Start();
线程间操作无效: 从不是创建控件“xxx”的线程访问它
最新推荐文章于 2022-07-27 11:02:41 发布