如何禁用依赖于另一个复选框的复选框?
在Java上,如果选中了复选框A,是否有任何方法可以禁用复选框(称为B)。
当我说禁用时,用户无法将其选中。它的 setEditable(false) 之类的。
On Java, is there any way to disable a checkbox (call it B), if checkbox A is checked.
When I say disable, the user can't check it off..Its setEditable(false) or something.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
JCheckBox.setEnabled(false)
准确显示这一点的教程如下:如何使用按钮、复选框和单选按钮
JCheckBox.setEnabled(false)
A tutortial showing exactly that is here: How to Use Buttons, Check Boxes, and Radio Buttons
像这样的东西吗?
Something like this?
yourCheckBox.setEnabled(false);
yourCheckBox.setEnabled(false);
或者您可以使用 ButtonGroup:
or you can use ButtonGroup: