我在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);
答案 0 :(得分:1)
未经测试,但我相信您“只是”需要删除trayItem.setToolTipText("42GB");
...