弹出窗体冻结背景形式

时间:2018-01-04 12:19:51

标签: windows vb.net

我在Vb.Net中有一个应用程序窗口。

弹出一个警告屏幕,为了关闭此消息框,我们必须点击"确定"按钮。当此警告弹出时,我的背景形式会冻结。

两种形式都在计时器中。

If dServer_Time > dEndtime AndAlso Not mssg Then
    a = True
    Me.WindowState = FormWindowState.Minimized
    Me.Show()
    Me.WindowState = FormWindowState.Maximized

    MessageBox.Show("Message Text", "Header", MessageBoxButtons.OK, MessageBoxIcon.None, MessageBoxDefaultButton.Button1, CType(262144, MessageBoxOptions))
End If

我想通过背景表单在消息框出现时运行。

0 个答案:

没有答案