创建一个无模式消息框

时间:2010-06-17 06:53:38

标签: c# .net messagebox modeless

如何创建无模式MessageBox?我是否必须创建自己的Windows窗体类并使用它?如果是这样,是否有一种简单的方法可以添加警告图标(而不是插入我自己的图像)并根据文本音量调整大小?

7 个答案:

答案 0 :(得分:47)

如果你需要一个只在代码继续在后台运行时显示自己的消息框(该框仍然是模态的,并且在单击OK之前阻止用户使用其他窗口),你可以随时启动消息框它自己的线程并继续执行你在原始线程中所做的事情:

    // Do stuff before.
    // Start the message box -thread:
    new Thread(new ThreadStart(delegate
    {
      MessageBox.Show
      (
        "Hey user, stuff runs in the background!", 
        "Message",
        MessageBoxButtons.OK,
        MessageBoxIcon.Warning
      );
    })).Start();
    // Continue doing stuff while the message box is visible to the user.
    // The message box thread will end itself when the user clicks OK.

答案 1 :(得分:6)

您必须创建一个表单并使用Show()将其显示为无模式。 MessageBox.Show(...)表现出模仿,如ghiboz在示例中所见;显示“消息描述”,直到用户按下按钮。

使用MessageBox.Show(...),您会在消息框关闭后立即获得结果;使用无模式消息框,当用户最终在消息框中选择某些内容时,您的代码必须有一个诸如事件之类的机制作出反应。

答案 2 :(得分:1)

如果没有编写代码,您可以创建一个在构造函数中执行以下操作的小表单

  • 将参数字符串作为要显示的消息
  • 使用此字符串填写表单上的标签
  • 使用以下之一加载图标(将Enum传递给构造函数)
    • SystemIcons.Application
    • SystemIcons.Asterix
    • SystemIcons.Error
    • SystemIcons.Exclamation
    • SystemIcons.Hand
    • SystemIcons.Information
    • SystemIcons.Question
    • SystemIcons.Shield
    • SystemIcons.Warning
    • SystemIcons.WinLogo
  • 调用Show(),这将使其成为模态对话框

如果你真的想要,你可以听到按下OK按钮时触发的事件。

答案 3 :(得分:0)

您可以使用SystemIcons

使用标准系统警告图标

答案 4 :(得分:0)

您必须使用表单并调用showDialog()

使用图标

MessageBoxIcon.Warning

答案 5 :(得分:0)

//没有通讯

object sync = new object();
ManualResetEvent Wait = new ManualResetEvent();
//you should create a place holder named MessageData for Message Data.
List<MessageData> Messages = new List<MessageData>();
internal void ShowMessage(string Test, string Title, ....)
{
    MessageData MSG = new MessageData(Test, Title);
    Wait.Set();
    lock(sync) Messages.Add(MSG);
}
// another thread should run here.
void Private_Show()
{
    while(true)
{
        while(Messsages.Count != 0)
        {
            MessageData md;
            lock(sync)
            {
                md = List[0];
                List.RemoveAt(0);
            }
            MessageBox.Show(md.Text, md.Title, md....);
        }
        Wait.WaitOne();
    }
}
对于并发消息框,

需要更多线程和更多代码(我没有足够的时间来编写)。

答案 6 :(得分:-1)

注意:这将创建一个模态对话框,这不是问题的问题

这是一个示例代码

if (MessageBox.Show("Description of the message", "Caption text", MessageBoxButtons.YesNo, MessageBoxIcon.Error) == DialogResult.Yes)
{
    // Do some stuff if yes pressed
}
else
{
    // no pressed
}