刷新 JFrame 并在循环中添加按钮
我在运行时向 jframe 添加一个新组件,然后调用
validate();
和 repaint();
但什么也没有发生
,还有没有办法添加使用循环的按钮,因此每次进入循环时,都会在运行时将一个新按钮添加到 jframe
我正在使用 netbeans 9.6.1
i am adding a new component to a jframe at run time, than i call
validate();
and repaint();
but nothing is happening
also is there a way to add buttons using a loop so each time enter the loop a new button will be added to jframe at run time
i am using netbeans 9.6.1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此示例在按钮的 < code>actionPerformed() 方法在每次点击时添加一个
JPanel
组件。This example uses
add()
andrevalidate()
in a button'sactionPerformed()
method to add aJPanel
of components on each click.