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.
我有一个摇摆应用程序,我想在其中使用带有图标的 JCheckbox。我构建的图标如下:
JCheckBox unsubmit = new JCheckBox("Unsubmit",applet.undo);
当我这样做时,标签和图标会出现在我的 GUI 中,但找不到框本身。如果我构造没有图标的 JCheckBox,则该框会返回。我试过调整按钮的首选大小,但没有效果。
有人知道这里发生了什么吗?
谢谢,
艾略特
图标被用来代替盒子。考虑创建一个 JCheckBox 和一个 JLabel 并紧挨着放置,并让 JLabel 保存 ImageIcon。