C# 中带有文本输入的每小时弹出窗口
我正在尝试制作一个每小时弹出一个窗口并允许我输入一些文本并提交的应用程序。
该文本将暂时保存到文本文件中,稍后保存到数据库中。
如何每小时弹出一些内容并进行文本输入?
它需要在XP和Win7上运行。
非常感谢 克里斯
I am trying to make an application that pops up a window every hour and allows me to input some text and submit.
This text will be saved to a text file for now, but a database later.
How do I make something popup every hour and have text input?
It needs to run on XP and Win7.
Many thanks
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Windows 有一个调度程序,或者您可以创建一个带有通知图标的应用程序,并在当前时间比上一个弹出时间晚一个小时时显示该窗口。
http://support.microsoft.com/kb/313565
Windows has a scheduler, or you could make an application with a notification icon and just show the window when the current time is an hour later then the previous popup time.
http://support.microsoft.com/kb/313565
您可以使用 System.Windows.Forms.Timer 类:
You can use the System.Windows.Forms.Timer class: