gpt4 book ai didi

windows-phone-8 - 适用于 Windows Phone 8.1 的新 API

转载 作者:行者123 更新时间:2023-12-04 01:27:54 24 4
gpt4 key购买 nike

我试图在 Windows Phone 8.1 中使用这两种方法(WP 8),但它给出了错误并且无法编译,很可能是因为它们被删除了。我尝试搜索新的 API,但找不到任何。这些有什么其他选择。
Dispatcher.BeginInvoke( () => {}); msdn link
System.Threading.Thread.Sleep(); msdn link

最佳答案

它们仍然适用于 Windows Phone 8.1 SIlverlight 应用程序,但不适用于 Windows Phone 商店应用程序。 Windows Store Apps 的替代品是:

sleep (见 Thread.Sleep replacement in .NET for Windows Store):

await System.Threading.Tasks.Task.Delay(TimeSpan.FromSeconds(30));

调度员(见 How the Deployment.Current.Dispatcher.BeginInvoke work in windows store app?):

CoreDispatcher dispatcher = CoreWindow.GetForCurrentThread().Dispatcher;
await dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => { });

关于windows-phone-8 - 适用于 Windows Phone 8.1 的新 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23607096/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com