为 jcheckbox 添加边框
有谁知道是否有一种简单的方法可以在 JCheckBox 对象(包括标签)周围放置边框? setBorder 似乎没有任何效果。我知道我可以将每个复选框放在 JPanel 中并为其设置边框,但是没有办法单独设置整个 JCheckBox 的边框吗? 谢谢
Does anyone know if there is an easy way to put a border around a JCheckBox object including the label? setBorder doesn't seem to have any effect. I know I could put each checkbox inside of a JPanel and border that, but is there no way to border the entire JCheckBox by itself?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 jcheckbox 上,setborder 确实有效,只是边框未绘制。
您所要做的就是调用 setBorderPainted(true) ,它应该可以工作。
on a jcheckbox the setborder does work, its just that the border is not painted.
all you have to do is call setBorderPainted(true) and it should work.