Java swing 中的 JCheckbox
我以这种方式创建了一个复选框:
JCheckbox field = new JCheckBox("EDEX:", true);.
我将其添加到 Jpanel 中,布局是使用 CellConstraints xy 位置的 FormLayout。
但在复选框后不显示 EDEX 文本。
这是代码:
panel.add(field , cc.xy(5, 3));
请帮助我,
谢谢
I have created one checkbox this way:
JCheckbox field = new JCheckBox("EDEX:", true);.
I was add this to Jpanel and layout is FormLayout using CellConstraints xy positions.
but it is not displayed EDEX text after checkbox.
this is code:
panel.add(field , cc.xy(5, 3));
please help me
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这工作正常:
This works fine: