C#中winform的timer控件定时弹窗后,会弹出多个同样的窗口?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#中winform的timer控件定时弹窗后,会弹出多个同样的窗口?相关的知识,希望对你有一定的参考价值。

代码执行完毕后,会弹出多个同样的窗口,但我只需要一个,各位大佬,怎么操作?

你可以在你的Show方法那里按F9添加一个断点,然后看它每次弹出是走的什么条件

一般来说,如果你只需执行一遍代码;那在你的代码完成之后就应该直接关闭计时器

还有,你可以把你的时间间隔设置长一点;具体你可以查看MSDN的官方示例

追问

这样吗,我关了,间隔1000,如果写在这个if外面的话,会直接终止,不给弹窗的

追答

你加断点debug看看吧,然后按F11看看代码怎么执行的

追问

我debug了,他运行到timer好像会在timer的tick事件那卡住

追答

timer是异步执行的,而且你在debug的时候实际上时间也在变化
因此可能你前一个方法还没执行完,后一个方法已经准备执行了
这时候你可以用Consol.WriteLine()在输出窗口打印信息来确认程序的执行过程
不过这些是次要的,你只要在后面再执行Show的时候知道它的触发条件;然后加代码语句跳出就行了

追问

麻烦你能可以看一下私信吗

参考技术A

有可能是你的内部变量状态不一致,

建议把登陆状态有关变量与登陆/修改密码窗口的类完全分离开,最好改成全局静态变量

也就是说你那些form里不要出现num,pd,b等字段定义

参考技术B 比如你的定时器Timer 名叫 time1
在定时器的Tick事件函数中这样写:
time1.Enabled = false; //关闭定时器
form2 f2 = new form2(); //实例化一个form2 窗体类
form2 .ShowDialog(); //设置form2 以对话框模式显示追问

那么请问,关闭定时器的话窗口怎么定时弹出?

C#定时器怎么写?

关于C#中timer类 在C#里关于定时器类就有3个
1.定义在System.Windows.Forms里
2.定义在System.Threading.Timer类里
3.定义在System.Timers.Timer类里

System.Windows.Forms.Timer是应用于WinForm中的,他是通过Windows消息机制实现的,类似于VB或Delphi中的Timer控件,内部使用API SetTimer实现的。他的主要缺点是计时不精确,而且必须有消息循环,Console Application(控制台应用程式)无法使用。

System.Timers.Timer和System.Threading.Timer很类似,他们是通过.NET Thread Pool实现的,轻量,计时精确,对应用程式、消息没有特别的需要。System.Timers.Timer还能够应用于WinForm,完全取代上面的Timer控件。他们的缺点是不支持直接的拖放,需要手工编码。

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

namespace WindowsApplication1

public partial class Form1 : Form

public Form1()

InitializeComponent();


private void Form1_Load(object sender, EventArgs e)


System.Timers.Timer aTimer = new System.Timers.Timer();
aTimer.Elapsed += new ElapsedEventHandler(theout); //到达时间的时候执行事件;
// 设置引发时间的时间间隔 此处设置为1秒(1000毫秒)
aTimer.Interval = 100000;
aTimer.AutoReset = true;//设置是执行一次(false)还是一直执行(true);
aTimer.Enabled = true; //是否执行System.Timers.Timer.Elapsed事件;


public void theout(object source, System.Timers.ElapsedEventArgs e)

ArrayList AutoTask = new ArrayList();
AutoTask.Add("8:30:00");
AutoTask.Add("9:30:00");
AutoTask.Add("10:30:00");
AutoTask.Add("11:34:15");

for (int n = 0; n < 4; n++)

if (DateTime.Now.ToLongTimeString().Equals(AutoTask[n]))

MessageBox.Show("现在时间是" + AutoTask[n]);





2.

C#.net 定时器

最近需要用到一个定时器,设定当 程序 到某时刻 执行某段代码。

using System;

using System.Timers;

namespace 定时器ConsoleApplication1



class Class1



[STAThread]

static void Main(string[] args)



System.Timers.Timer aTimer = new System.Timers.Timer();

aTimer.Elapsed += new ElapsedEventHandler(TimeEvent);

// 设置引发时间的时间间隔 此处设置为1秒(1000毫秒)

aTimer.Interval = 1000;

aTimer.Enabled = true;

Console.WriteLine("按回车键结束程序";

Console.WriteLine(" 等待程序的执行......";

Console.ReadLine();



// 当时间发生的时候需要进行的逻辑处理等

// 在这里仅仅是一种方式,可以实现这样的方式很多.

private static void TimeEvent(object source, ElapsedEventArgs e)



// 得到 hour minute second 如果等于某个值就开始执行某个程序。

int intHour = DateTime.Now..Hour;

int intMinute = DateTime.Now.Minute;

int intSecond = DateTime.Now.Second;

// 定制时间; 比如 在10:30 :00 的时候执行某个函数

int iHour = 10;

int iMinute = 30;

int iSecond = 00;

// 设置 每秒钟的开始执行一次

if( intSecond == iSecond )



Console.WriteLine("每秒钟的开始执行一次!";



// 设置 每个小时的30分钟开始执行

if( intMinute == iMinute && intSecond == iSecond )



Console.WriteLine("每个小时的30分钟开始执行一次!";



// 设置 每天的10:30:00开始执行程序

if( intHour == iHour && intMinute == iMinute && intSecond == iSecond )



Console.WriteLine("在每天10点30分开始执行!";










参考技术A 1楼的回答的非常详细了,
1.定义在System.Windows.Forms里
2.定义在System.Threading.Timer类里
3.定义在System.Timers.Timer类里
平时多查查MSDN,上面有帮助说明和示例。
参考技术B setTimeout(SetInitialize, 1000);
SetInitialize是方法名
java脚本的

以上是关于C#中winform的timer控件定时弹窗后,会弹出多个同样的窗口?的主要内容,如果未能解决你的问题,请参考以下文章

C#三种定时器的实现

C#定时器怎么写?

C#实现定时器的几种方案

C#定时器控件Timer

C# Winform开发中,通过timer控件对Listview中的数据进行刷新,存在不停闪烁的问题!

关于C#中的timer控件!