如何在C#中进行“系统模态对话”?

时间:2010-10-22 18:53:39

标签: c# vb.net

如何在Windows XP中将表单设为“系统模式对话框”

“关闭对话框”,因此除了我在C#中的表单外,不能在Windows中进行任何操作。

4 个答案:

答案 0 :(得分:6)

来自微软的Raymond Chen表示:

  

Win32没有系统模式   对话框了。所有对话都是   模仿他们的主人。

此外,您的问题与this一个问题重复。

答案 1 :(得分:5)

我同意Bernarnd的观点,即以这种方式接管系统是“粗鲁的”。

如果你需要这种东西,你可以创建一个类似的效果,如下所示。这类似于用户帐户控制(“您是否希望允许以下程序对计算机进行更改”)Vista中引入的模式窗口,它在模态窗口后面显示透明背景。

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        // show a "wrapper" form that covers the whole active screen
        // This wrapper shows the actual modal form
        Form f = new Form();
        f.WindowState = FormWindowState.Maximized;
        f.FormBorderStyle = FormBorderStyle.None;
        f.Opacity = 0.5;
        f.Load += new EventHandler(f_Load);
        f.Show();
    }

    void f_Load(object sender, EventArgs e)
    {
        MessageBox.Show("This is a modal window");
        ((Form)sender).Close();
    }        
}

这是一种不那么粗鲁的方法,因为用户可以ALT-TAB退出模态窗口等。

答案 2 :(得分:1)

这可以通过最大化形式来完成 并将不透明度设置为50%

并将表单始终设置在顶部属性为TRUE

使用KeyHOOK禁用键盘的Win键和Alt键.......

答案 3 :(得分:1)

你可以用这个:

string message = "Hello there! this is a msgbox in system modal";
MessageBox.Show(message is string ? message.ToString() : "Empty Message.",
                "Message from server", MessageBoxButtons.OK, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1, (MessageBoxOptions)4096);