有关winform和wpf问题对于一段代码每隔几秒执行一次的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了有关winform和wpf问题对于一段代码每隔几秒执行一次的问题相关的知识,希望对你有一定的参考价值。
在wpf代码如下
private void start_btn_Click(object sender, RoutedEventArgs e)
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = TimeSpan.FromSeconds(5);
timer.Tick += timer1_Tick;
timer.Start()
private void timer1_Tick(object sender, EventArgs e)
{
MessageBox.Show("aaaaa");
...........
如图这是每次会跳出的框,点了以后才会往下跑,隔5秒再出现一次
在winform中用的控件是timer,因为DispatcherTimer 没有
private void start_btn_Click(object sender, RoutedEventArgs e)
timer.Interval =5000;
timer.Tick += timer_Tick;
private void timer_Tick(object sender, EventArgs e)
{
MessageBox.Show("aaaaa");
...........
则每五秒会自动跳一个,不停的跳。请问如何在winform中像wpf一样我只有点了在会继续运行下面的代码,然后隔5秒在执行一遍?
这个方法中先把定时器关闭,然后showmessagebox,然后再打开定时器本回答被提问者和网友采纳
如何使用twisted每隔几秒发送一次IRC消息?
【中文标题】如何使用twisted每隔几秒发送一次IRC消息?【英文标题】:How to send IRC messages every few seconds using twisted? 【发布时间】:2012-11-29 09:21:50 【问题描述】:twisted 文档提供了how to create an IRC bot 的示例
这是我目前拥有的代码(源自上面的示例):
from twisted.words.protocols import irc
from twisted.internet import protocol
from twisted.internet import reactor
class Bot(irc.IRCClient):
def _get_nickname(self):
return self.factory.nickname
nickname = property(_get_nickname)
def signedOn(self):
self.join(self.factory.channel)
print "Signed on as %s." % (self.nickname,)
def joined(self, channel):
print "Joined %s." % (channel,)
def privmsg(self, user, channel, msg):
print msg
class BotFactory(protocol.ClientFactory):
protocol = Bot
def __init__(self, channel, nickname='test-nick-name'):
self.channel = channel
self.nickname = nickname
def clientConnectionLost(self, connector, reason):
print "Lost connection (%s), reconnecting." % (reason,)
connector.connect()
def clientConnectionFailed(self, connector, reason):
print "Could not connect: %s" % (reason,)
if __name__ == "__main__":
channel = '#test-channel-123'
reactor.connectTCP('irc.freenode.net', 6667, BotFactory(channel))
reactor.run()
现在我想添加每 5 秒向频道发送一条消息的功能。我该怎么做呢?如何从外部获取 Bot.msg 方法的句柄?
【问题讨论】:
【参考方案1】:每 5 秒向频道发送一条消息
看看LoopingCall
,你可以用它每隔n秒调用一个方法。
from twisted.internet import task
task.LoopingCall(yourSendingMethodHere).start(5.0)
如何从外部获取 Bot.msg 方法的句柄?
这取决于你。您创建BotFactory
的实例,并且每个Bot
都有对其工厂的引用。
【讨论】:
以上是关于有关winform和wpf问题对于一段代码每隔几秒执行一次的问题的主要内容,如果未能解决你的问题,请参考以下文章
如何在python中每隔几秒在tkinter窗口中更改一行文本[重复]