如何在 Silverlight 中编写每 10 秒执行一次操作的程序?

发布于 2024-12-10 19:55:46 字数 742 浏览 0 评论 0原文

如何在 Silverlight 中编写每 10 秒执行一次操作的程序,例如处理 twitter 搜索结果?我最接近的是:

        // Get and process new twitter search results evey 10 seconds
        BackgroundWorker worker = new BackgroundWorker();
        worker.DoWork += (sender, args) =>
        {
            while (true)
            {
                //Get results of Twitter Search and process them in the above code
                client.DownloadStringAsync(new Uri("http://search.twitter.com/search.json?q=" + keywords + "&show-user=true", UriKind.Absolute));

                // wait 10 seconds beofre getting new twits
                System.Threading.Thread.Sleep(10000);
            }
        };
        worker.RunWorkerAsync();

但它不起作用。请帮忙。

How to write program in Silverlight that would do something every 10 seconds, eg, process twitter search results? The closest I came up is this:

        // Get and process new twitter search results evey 10 seconds
        BackgroundWorker worker = new BackgroundWorker();
        worker.DoWork += (sender, args) =>
        {
            while (true)
            {
                //Get results of Twitter Search and process them in the above code
                client.DownloadStringAsync(new Uri("http://search.twitter.com/search.json?q=" + keywords + "&show-user=true", UriKind.Absolute));

                // wait 10 seconds beofre getting new twits
                System.Threading.Thread.Sleep(10000);
            }
        };
        worker.RunWorkerAsync();

but it not work. plz help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半岛未凉 2024-12-17 19:55:46

如果您希望代码在UI线程上执行,则需要DispatcherTimer。请参阅此帖子

If you want the code to be excuted on the UI thread, you need DispatcherTimer. See this post.

拥醉 2024-12-17 19:55:46

您想要使用System.Threading.Timer。底部带有示例代码的所有官方文档: http:// msdn.microsoft.com/en-us/library/system.threading.timer.aspx

You want to use System.Threading.Timer. All the official documentation with sample code at the bottom: http://msdn.microsoft.com/en-us/library/system.threading.timer.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文