如何获取MessageBox按钮标题?

时间:2009-05-31 16:35:01

标签: c# .net winforms messagebox

我正在创建一个自定义消息框,允许您复制文本,但我希望它看起来与标准消息框完全相同,所以我想将按钮文本设置为系统语言,就像MessageBox类一样确实。 有谁知道如何获取该文本(“是”,“否”,“取消”等)?。

5 个答案:

答案 0 :(得分:7)

感谢您使用Snarfblam链接的答案,我可以弄清楚其余部分。

class Program {

[DllImport("user32.dll", CharSet = CharSet.Auto)]
static extern int LoadString(IntPtr hInstance, uint uID, StringBuilder lpBuffer, int nBufferMax);
[DllImport("kernel32")]
static extern IntPtr LoadLibrary(string lpFileName);

private const uint OK_CAPTION = 800;
private const uint CANCEL_CAPTION = 801;
private const uint ABORT_CAPTION = 802;
private const uint RETRY_CAPTION = 803;
private const uint IGNORE_CAPTION = 804;
private const uint YES_CAPTION = 805;
private const uint NO_CAPTION = 806;
private const uint CLOSE_CAPTION = 807;
private const uint HELP_CAPTION = 808;
private const uint TRYAGAIN_CAPTION = 809;
private const uint CONTINUE_CAPTION = 810;

static void Main(string[] args) {
    StringBuilder sb = new StringBuilder(256);

    IntPtr user32 = LoadLibrary(Environment.SystemDirectory + "\\User32.dll");

    LoadString(user32, OK_CAPTION, sb, sb.Capacity);
    string ok = sb.ToString();

    LoadString(user32, CANCEL_CAPTION, sb, sb.Capacity);
    string cancel = sb.ToString();

    LoadString(user32, ABORT_CAPTION, sb, sb.Capacity);
    string abort = sb.ToString();

    LoadString(user32, RETRY_CAPTION, sb, sb.Capacity);
    string retry = sb.ToString();

    LoadString(user32, IGNORE_CAPTION, sb, sb.Capacity);
    string ignore = sb.ToString();

    LoadString(user32, YES_CAPTION, sb, sb.Capacity);
    string yes = sb.ToString();

    LoadString(user32, NO_CAPTION, sb, sb.Capacity);
    string no = sb.ToString();

    LoadString(user32, CLOSE_CAPTION, sb, sb.Capacity);
    string close = sb.ToString();

    LoadString(user32, HELP_CAPTION, sb, sb.Capacity);
    string help = sb.ToString();

    LoadString(user32, TRYAGAIN_CAPTION, sb, sb.Capacity);
    string tryAgain = sb.ToString();

    LoadString(user32, CONTINUE_CAPTION, sb, sb.Capacity);
    string cont = sb.ToString();

}

答案 1 :(得分:4)

这些字符串似乎存储在User32.dll库中。有关Pure BASIC论坛this discussion的详细信息,请参见底部。

答案 2 :(得分:1)

有一篇关于codeproject.com的文章讨论了本地化消息框 - 你可能会觉得这个链接很有用......

http://www.codeproject.com/KB/miscctrl/Localizing_MessageBox.aspx

希望它有助于:)

答案 3 :(得分:0)

您可以在Reflector中打开System.Windows.Forms.dll,看看它是如何设置按钮文本的。

答案 4 :(得分:-2)

在您输入该消息时,您可以键入“是”,“否”,“确定”,“取消”......