6

上生成的异常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!");
    }
}
4

2 回答 2

5

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

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

匿名方法和委托

CS0120:非静态字段、方法或属性“foo”需要对象引用

于 2015-05-12T00:05:41.450 回答
3
Dispatcher.BeginInvoke(delegate() { MessageBox.Show("your stuff"); });
于 2013-10-07T06:27:46.800 回答