gpt4 book ai didi

java - 将 JTable 中的 boolean 复选框替换为图像图标复选框

转载 作者:行者123 更新时间:2023-11-30 04:06:50 26 4
gpt4 key购买 nike

嗨,我和他有同样的问题。

Trying to replace boolean check-box in a JTable with an image-icon checkbox

但我已经部分解决了这样做:

table.getColumnModel().getColumn(i).setCellRenderer(new CustomBooleanCellRenderer());           
table.getColumnModel().getColumn(i).setCellEditor(new CustomBooleanCellEditor());

并且可以工作...但我无法将图标居中...并且我无法自动更新,知道吗?

最佳答案

基本上,在渲染器和编辑器中,您需要将JCheckBoxhorizo​​ntalAlignment设置为CENTER

public class CustomCheckBox extends JCheckBox {

//...

public CustomCheckBox() {
//...
setHorizontalAlignment(CENTER);
}

(注意 - 自定义编辑器和渲染器都使用 CustomCheckBox)

关于java - 将 JTable 中的 boolean 复选框替换为图像图标复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20556592/

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