gpt4 book ai didi

java - 将图片放在 JScrollPane 和 JTable 的背景中

转载 作者:行者123 更新时间:2023-12-01 14:28:57 26 4
gpt4 key购买 nike

我想在 JScrollPane 中使用图像背景,但我想要处理图像的空间不可用。它不是 JScrollPane 也不是 JTable,我在图像中使用了红色和蓝色: enter link description here

http://www.4shared.com/download/YDzZc6EQ/test3.jpg?tsid=20130606-152249-f0c2375e

jTableUtilisateur.setBackground(Color.BLUE);
jTableUtilisateur.setModel(new DefaultTableModel(data, header)
{
boolean[] canEdit = new boolean [] {
false, false, false, false, false, false, false, false, false, false, false, false
};

public boolean isCellEditable(int rowIndex, int columnIndex) {
return canEdit [columnIndex];
}
});
jTableUtilisateur.setFont(new Font("Century Gothic", 0, 12));
jTableUtilisateur.setForeground(new Color(0, 75, 138));
jTableUtilisateur.setAutoCreateRowSorter(true);

jScrollPaneUtilisateur = new JScrollPane(jTableUtilisateur);
jScrollPaneUtilisateur.setBackground(Color.red);
jScrollPaneUtilisateur.setBorder( new TitledBorder("Utilisateurs") );

最佳答案

可以根据需要而定,(每种方式都有不同的用途)

关于java - 将图片放在 JScrollPane 和 JTable 的背景中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16966539/

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