У меня есть кнопка. Когда я нажимаю эту кнопку, я создаю новый поток, затем перехожу к методу ThreadProcSafe и хочу там установить ответ в richtextbox.but, но когда я пытаюсь это сделать, я всегда беру InvalidOperationException иговорит мне, что перекрестная операция потока не действительна: доступ к элементу управления из потока, отличного от потока, в котором он был создан. какие-либо предложения?
delegate void SetTextCallback(string text);
private Thread demoThread = null;
private void Go_Click(object sender,EventArgs e)
{
this.demoThread =new Thread(new ThreadStart(this.ThreadProcSafe));
this.demoThread.Start();
}
// This method send a request get response
private void ThreadProcSafe()
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
StreamReader sr = new StreamReader(response.GetResponseStream());
richTextBox1.Text = sr.ReadToEnd();
sr.Close();
this.SetText(richTextBox1.Text);
}
private void SetText(string text)
{
// InvokeRequired required compares the thread ID of the
// calling thread to the thread ID of the creating thread.
// If these threads are different, it returns true.
if (this.richTextBox1.InvokeRequired)
{
SetTextCallback d = new SetTextCallback(SetText);
this.Invoke(d, new object[] { text });
}
else
{
this.richTextBox1.Text = text;
}
}