Java TrayIcon 消息关闭按钮

发布于 2024-08-14 19:34:54 字数 278 浏览 7 评论 0原文

这里真正的问题可能是是否有更好的方法在 Java 中显示桌面消息。但是...

我正在使用 Java 托盘图标向桌面用户显示消息。因为他们希望保留某些消息直到用户单击它们,所以为了使用“displayMessage”功能,我必须继续显示它们,直到用户单击它们并且我收到操作命令。但是,如果用户单击小关闭按钮,我不会收到操作命令。

我在linux上开发这个,但用户在windows上,这使测试变得复杂。另外,显然这不是托盘图标功能的设计目的,所以如果有更好的方法来做到这一点,请告诉我。

提前致谢。

The real question here might be if there's a better way to display desktop messages in Java. However...

I'm using the Java trayicon to display messages to a desktop user. Because they want to keep certain messages up until the user clicks on them, in order to use the 'displayMessage' feature, I have to keep displaying them until the user clicks on them and I get an action command. However, if the user clicks on the little close button, I don't get an action command.

I'm developing this on linux, but the users are on windows, which complicates the testing. Also, obviously this isn't what the trayicon functionality was designed for, so if there's a better way to do this, let me know.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

调妓 2024-08-21 19:34:54

只使用对话框窗口怎么样,例如java.swing.JOptionPane.showConfirmDialog(...)

这是一篇关于它的文章: http://download.oracle.com/ javase/tutorial/uiswing/components/dialog.html

What about just using a dialog window, e.g. java.swing.JOptionPane.showConfirmDialog(...)?

Here's an article about it: http://download.oracle.com/javase/tutorial/uiswing/components/dialog.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文