Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Java 中设置我的 Menuitem 不可点击。当您将鼠标悬停在它上面时,它应该显示出来,但不能点击,并且不应该有悬停颜色。换句话说,我想在系统托盘菜单中显示信息文本。它没有点击功能。系统托盘和显示完全正常,我只需要解决上述问题。
MenuItem itmPrgName = new MenuItem(Main.programmName + " " + Main.version);
这个怎么做?
我想在 Java 中设置我的 Menuitem 不可点击。当您将鼠标悬停在它上面时,它应该显示出来,但不能点击,并且不应该有悬停颜色。换句话说,我想在系统托盘菜单中显示信息文本。它没有点击功能。
用作JPopup放在那里的容器//或JLabel包含JTextArea(setEditable(false))不同数量的JTextPane (setEditable(false))JPanelJComponents
JPopup
JLabel
JTextArea(setEditable(false))
JTextPane (setEditable(false))
JPanel
JComponents
LayoutManager如果需要,为 JPopup 或 JPanel设置适当的
LayoutManager