在 Swings 中重新绘制 JPanel
当我单击复选框时,如何使用 Jtabel 在 Jpanel 中显示数据。
当我第一次执行程序时,jpanel 正在执行。但是当我第二次单击包含 jtable 的复选框面板时,不会重新绘制 jpanel。
请帮忙。
提前致谢
How to Display the data in Jpanel using Jtabel when i clicked on Checkbox.
when i execute my programme for 1st time jpanel is executing. but second time when i clicked on checkbox panel which contain jtable does not repaint the jpanel.
please help .
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要调用类似 fireTableDataChanged() 的方法来刷新 JTable。有关详细信息,请参阅 http://www.jguru.com/faq/view.jsp ?EID=21114
You need call something like fireTableDataChanged() for refresh JTable. For more details see http://www.jguru.com/faq/view.jsp?EID=21114
将 Jtable 添加到 JPanel 后,您可以使用 validate() 方法。
You can use the method validate() after you added the Jtable to your JPanel.