I would like to show 3 buttons on a MessageBox. I found the Guide.BeginShowMessageBox method, but it isn’t working with 3 buttons. Here is my code:
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);
Thanks,
Laci
From MSDN:
Are you on Windows Phone?