MessageBox实现自动延时关闭

Posted yangwang365

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MessageBox实现自动延时关闭相关的知识,希望对你有一定的参考价值。

1,首先新建一个winform窗体:MessageForm,设置StartPosition属性为Manual,Location属性值-500, -500

主要是为了让MessageForm窗体不显示在页面上

2,窗体内代码如下:

  public partial class MessageForm : Form
    {
         int t;
         string txt;
        /// <summary>
        /// 自定义弹窗
        /// </summary>
        /// <param name="time">窗体消失时间</param>
        /// <param name="text">窗体提示内容</param>
        public MessageForm(int time, string text)
        {
            t = time;
            txt = text;
            InitializeComponent();
        }
        private void timer1_Tick(object sender, EventArgs e)
        {
            this.Close();
        }

        private void MessageForm_Load(object sender, EventArgs e)
        {
        
            timer1.Interval = t;
            timer1.Enabled = true;
            MessageBox.Show(this, txt, "提示");
        }
    }

3,调用:

new MessageForm(3000, "输入参数有误").Show();

根据https://blog.csdn.net/zheqingzheqing/article/details/51855274简单修改

以上是关于MessageBox实现自动延时关闭的主要内容,如果未能解决你的问题,请参考以下文章

C#自动弹出窗口并定时自动关闭

C# winform webbrowser 自动登录网站?

element-ui MessageBox 弹框,我只想要弹出样式,不想要点击,当做一个弹出提醒,两秒后自动关闭

element-ui MessageBox 弹框,我只想要弹出样式,不想要点击,当做一个弹出提醒,两秒后自动关闭

求教 探讨python tkinter的messagebox

后台弹出js警告框 如何自动关闭