如何将 JTable 添加到从 JScrollPane 扩展的类中?
我想创建一个类并从 JScrollPane 扩展它,而不是想向其中添加自定义表格,我想知道是否可能? 我将示例代码放在这里
我可以在调用 super 后创建我的表吗?
import javax.swing.*;
public class myJtableButton extends JScrollPane {
private JTable __table;
private JScrollPane __scrollPane;
private String TableName;
public myJtableButton(String TableName) {
super(__table);
__table = new JTable();
this.TableName = TableName;
}
}
I want to create a class and extend it from JScrollPane than I want to add a customized table to it, I want to know is it possible or not?
I put my sample code here
Can I create my table after I call super?
import javax.swing.*;
public class myJtableButton extends JScrollPane {
private JTable __table;
private JScrollPane __scrollPane;
private String TableName;
public myJtableButton(String TableName) {
super(__table);
__table = new JTable();
this.TableName = TableName;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以创建这样一个类。只是不要在构造函数中调用 super 。相反,创建表格,然后设置滚动条的视图,如下所示:
Yes you can create such a class. Just don't call super in your constructor. Instead create your table and then set the view of the scroll bar like this: