我有一个winforms应用程序,它在Web服务请求期间锁定
我尝试过使用doEvents来保持应用程序的解锁状态,但它仍然没有足够的响应能力,
如何绕过此锁定,以便应用始终响应?
答案 0 :(得分:5)
最好的方法是简单地在另一个线程上执行IO工作,可能通过BackgroundWorker
或WebClient
的异步方法。
或许见here。在回复UI控件(线程亲和力)时,请务必使用Invoke
;完整的例子:
using System;
using System.Net;
using System.Windows.Forms;
class MyForm : Form
{
Button btn;
TextBox txt;
WebClient client;
public MyForm()
{
btn = new Button();
btn.Text = "Download";
txt = new TextBox();
txt.Multiline = true;
txt.Dock = DockStyle.Right;
Controls.Add(btn);
Controls.Add(txt);
btn.Click += new EventHandler(btn_Click);
client = new WebClient();
client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
}
void client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
Invoke((MethodInvoker)delegate
{
if (e.Cancelled) txt.Text = "Cancelled";
else if (e.Error != null) txt.Text = e.Error.Message;
else txt.Text = e.Result;
});
}
void btn_Click(object sender, EventArgs e)
{
client.DownloadStringAsync(new Uri("http://google.com"));
}
}
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.Run(new MyForm());
}
}
答案 1 :(得分:3)
在后台线程中执行Web服务请求。对Application.DoEvents()的过多调用要小心。