更改表数据
我的应用程序中显示了表格,我想获得搜索按钮,该按钮将更改表格中显示的数据。
怎么办呢?
txSearch = new JTextField();
txSearch.setBounds(107, 11, 150, 20);
contentPane.add(txSearch);
txSearch.setColumns(10);
JButton btnSearch = new JButton("Search");
btnSearch.setBounds(261, 10, 89, 23);
contentPane.add(btnSearch);
提前致谢
I have table shown in the app and I'd like to get search button which will change the data shown in the table.
How to do that ?
txSearch = new JTextField();
txSearch.setBounds(107, 11, 150, 20);
contentPane.add(txSearch);
txSearch.setColumns(10);
JButton btnSearch = new JButton("Search");
btnSearch.setBounds(261, 10, 89, 23);
contentPane.add(btnSearch);
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是代码的一部分:
}
Here's part of the code :
}