gpt4 book ai didi

java - TableCellRenderer 丢失

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:15:00 28 4
gpt4 key购买 nike

我有一个绑定(bind)到 JTable 的 ArrayList。之后

 bindingGroup.unbind(); 
bindingGroup.bind();

(完成刷新数据)我丢失了表格单元格渲染器行为。

有什么建议吗?

最佳答案

我不知道 bind() 方法的作用,但如果它们通过更改模型来刷新表,则会重新创建 TableColumnModel,这会导致您丢失添加到表中的任何自定义渲染器。

一种解决方案是在调用 bind() 方法后将渲染器添加回表格。

或者在创建 JTable 之后,您可以使用:

table.setAutoCreateColumnsFromModel(false); 

防止重新创建 TableColumnModel。

关于java - TableCellRenderer 丢失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8273371/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com