如何显示多个消息框

时间:2015-03-18 11:00:31

标签: c#

我想显示多个带有时间花费的消息框,即如果1分钟,则显示1个弹出窗口,如果有两个消息框将出现。

MessageBox.Show(this,
            "hello i am message box.",
            "Rambo forever",
            MessageBoxButtons.OK,            
            MessageBoxDefaultButton.Button1,
            (MessageBoxOptions)0x40000);

1 个答案:

答案 0 :(得分:1)

我并不完全明白你想要做什么,但我希望这会对你有所帮助:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

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

        public static int t = 1800;
        public static bool msg = false;

        private void Form1_Load(object sender, EventArgs e)
        {
            timer1.Enabled = true;
            timer1.Interval = t;
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            if (msg == false)
            {
                msg = true;
                MessageBox.Show("Some text here.", "");
                msg = false;
            }
        }
    }
}

如果以前的消息框已关闭,它将每隔一分钟创建一个新的消息框。