如何在MessageBox上显示3个按钮?

时间:2011-06-29 13:40:04

标签: button xna messagebox

我想在MessageBox上显示3个按钮。我找到了Guide.BeginShowMessageBox方法,但它没有使用3个按钮。这是我的代码:

Guide.BeginShowMessageBox("Info", "This is a test messsage.",
        new List<string> { "OK", "Retry", "Cancel" }, 0, MessageBoxIcon.Warning,
        asyncResult =>
        {
            int? returned = Guide.EndShowMessageBox(asyncResult);
            Debug.WriteLine(returned.ToString());
        }, null);

谢谢, LACI

1 个答案:

答案 0 :(得分:1)

来自MSDN

  

最大数量的按钮在Windows Phone 上为两个,在Xbox 360或Windows上为三个。

你在Windows Phone上吗?