我想在 JScrollPane 中使用图像背景,但我想处理图像的空间不可用。它既不是 JScrollPane 也不是 JTable,我在图像中使用了红色和蓝色: 在此处输入链接描述
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") );