4

我在 Windows 操作系统上使用 Java 和 SWT。我创建了一个系统托盘。另外,我在系统托盘中添加了工具提示。工具提示出现,但随后自动消失,只要我不按退出按钮,它就会出现。可能吗?

ToolTip tip = new ToolTip(shell, SWT.BALLOON | SWT.ICON_INFORMATION);
tip.setText("Title");
tip.setMessage("Test Message.");
tip.setAutoHide(false);

TrayItem trayItem = new TrayItem(tray, SWT.NONE);
trayItem.setImage(icon);
trayItem.setToolTipText("42GB");
trayItem.setToolTip(tip);
tip.setVisible(true);
4

1 回答 1

1

未经测试,但我相信你“只是”需要删除trayItem.setToolTipText("42GB");......

于 2012-11-11T11:21:31.497 回答