我正在WP7中处理应用程序,我想将一个列表框作为参数传递给client_DownloadStringCompleted方法。

我的代码如下所示,

WebClient client = new WebClient();
client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);

最佳答案

只需将此行添加到您的代码中:

client.DownloadStringAsync(yourUri, yourListBox);

10-06 06:27