C# 中带有文本输入的每小时弹出窗口

发布于 2024-10-22 08:22:14 字数 147 浏览 2 评论 0原文

我正在尝试制作一个每小时弹出一个窗口并允许我输入一些文本并提交的应用程序。

该文本将暂时保存到文本文件中,稍后保存到数据库中。

如何每小时弹出一些内容并进行文本输入?

它需要在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

放血 2024-10-29 08:22:14

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

甜中书 2024-10-29 08:22:14

您可以使用 System.Windows.Forms.Timer 类:

Timer timer = new Timer {Interval = 1500}; // Interval is miliseconds
timer.Tick += (s,e) => MessageBox.Show("Timer Expired");
timer.Start();

You can use the System.Windows.Forms.Timer class:

Timer timer = new Timer {Interval = 1500}; // Interval is miliseconds
timer.Tick += (s,e) => MessageBox.Show("Timer Expired");
timer.Start();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文