2

我正在使用 C# 中的 Silverlight 创建适用于 Windows Phone 7 的应用程序。

我发现很多对 DispatcherTimer(DispatcherPriority) 重载的引用,但我无法在我的代码中设置它(例如 timer = new DispatcherTimer(DispatcherPriority) 告诉我“DispatcherPriority 在当前上下文中不存在”)。

我认为 DispatcherTimer 被 DispatcherTimer(DispatcherPriority) 重载,但是当我在我的代码中使用它时,我看不到对这个构造函数的任何引用。我想尝试将优先级设置为“正常”或“发送”,但我似乎无法实现任何具有优先级的 DispatcherTimer。有什么建议么?

4

1 回答 1

5

采用 Dispatcher Priority 的构造函数仅存在于完整的 .NET 框架中——即用于 WPF。Silverlight/WP7 中的 DispatcherTimer 不支持优先级。

比较 DispatcherTimer 中的文档。NET 4Silverlight

于 2011-11-22T04:13:26.553 回答