码迷,mamicode.com
首页 > 其他好文 > 详细

MessageBox实现自动延时关闭

时间:2018-08-03 14:39:18      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:text   string   tick   一个   event   component   页面   代码   消失   

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实现自动延时关闭

标签:text   string   tick   一个   event   component   页面   代码   消失   

原文地址:https://www.cnblogs.com/yangwang365/p/9413227.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!