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 对象周围放置边框?setBorder 似乎没有任何效果。我知道我可以将每个复选框放在 JPanel 和边框内,但是没有办法单独为整个 JCheckBox 加边框吗?谢谢
在 jcheckbox 上 setborder 确实有效,只是没有绘制边框。您所要做的就是调用 setBorderPainted(true) 它应该可以工作。