gpt4 book ai didi

c# - 如何在 Windows Phone 8 上以异步方法使用 Messagebox.Show?

转载 作者:行者123 更新时间:2023-12-04 14:59:51 25 4
gpt4 key购买 nike

MessageBox 上生成异常.我如何使用 MessageBoxasync方法?

private async void Purchheard(object sender,EventArgs e)
{
Debug.WriteLine("Начинаю покупку");
try
{
await CurrentApp.RequestProductPurchaseAsync(ID,false);
if(license.ProductLicenses[ID].IsActive)
{
world.is_freemium=false;
}
}
catch (Exception ex)
{
MessageBox.Show("Finished!");
}
}

最佳答案

不知道为什么接受的答案不起作用,但这是 .NET 4.5 的一个工作示例

var dg = new Action(() => { MessageBox.Show(msg, name); });
Dispatcher.CurrentDispatcher.BeginInvoke(dg);

Anonymous methods and delegates

CS0120: An object reference is required for the nonstatic field, method, or property 'foo'

关于c# - 如何在 Windows Phone 8 上以异步方法使用 Messagebox.Show?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18507471/

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