我想用电文显示3个县。 我发现《指南》。 BeginShowMessage 方框方法,但与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);
Thanks, Laci