"Cross-thread operation is not valid" exception
我多次遇到此异常,但所有这些时间我都在设置控件的值。那时我使用一个名为 的函数解决了这个问题SetControlPropertyThreadSafe()
,该函数仅由 stackoverflow.com 上的某个人建议。但是这次我在尝试获取组合框的值时遇到了这个异常。这是代码:
string cat;
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text.Trim().Length > 20)
{
System.Threading.Thread t = new System.Threading.Thread(addQuickTopic);
t.Start();
}
else
MessageBox.Show("The length of the title must be greater than 20", "Title length invalid", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
public string tTitle="";
void addQuickTopic()
{
Global.SetControlPropertyThreadSafe(button1, "Text", "Working...");
Global.SetControlPropertyThreadSafe(button1, "Enabled", false);
Topic t = new Topic();
t.setTitle(textBox1.Text);
t.setDescription(" ");
t.setDesID(Global.getMd5Hash(Common.uid+DateTime.Today.ToString()+DateTime.Today.Millisecond.ToString()));
t.setUsrID(Common.uid);
t.setReplyToID("");
t.setConDate("0");
cat = CategoryList.SelectedValue.ToString();
如您所见,我直接获取 textBox1.Text 而不应用任何线程安全操作。但是在最后一行尝试获取组合框的选定值时,我得到了这个异常。那么有人可以建议我在这种情况下该怎么做吗?以下是用于设置控件值的线程安全函数的代码:
public static void SetControlPropertyThreadSafe(Control control, string propertyName, object propertyValue)
{
try
{
if (control.InvokeRequired)
{
control.Invoke(new SetControlPropertyThreadSafeDelegate(SetControlPropertyThreadSafe), new object[] { control, propertyName, propertyValue });
}
else
{
control.GetType().InvokeMember(propertyName, BindingFlags.SetProperty, null, control, new object[] { propertyValue });
}
}
catch (Exception)
{ }
}
我是否需要创建类似的get
功能?或者任何其他可用的解决方案?