0

我有一个JTable,我正在尝试在 后面插入一个图像JTable作为水印

tblMainView= new JTable(dtModel){

        public Component prepareRenderer(TableCellRenderer renderer, int row, int column) 
        {
        Component c = super.prepareRenderer( renderer, row, column);
        // We want renderer component to be transparent so background image is visible
        if( c instanceof JComponent )
        ((JComponent)c).setOpaque(true);
        return c;
        }
        ImageIcon image = new ImageIcon( "images/watermark.png" );

          public void paint( Graphics g )
        {
        // First draw the background image - tiled 
        Dimension d = getSize();
        for( int x = 0; x < d.width; x += image.getIconWidth() )
        for( int y = 0; y < d.height; y += image.getIconHeight() )
        g.drawImage( image.getImage(), x, y, null, null );
        // Now let the regular paint code do it's work
        super.paint(g);
        }


        public boolean isCellEditable(int rowIndex, int colIndex) {
          return false;
        }
        public Class getColumnClass(int col){
            if (col == 0)  
            {  
            return Icon.class;  
            }else if(col==7){
                return String.class;
            }
        else
            return String.class;  

        }   
        public boolean getScrollableTracksViewportWidth() {
            if (autoResizeMode != AUTO_RESIZE_OFF) {
                if (getParent() instanceof JViewport) {
                return (((JViewport)getParent()).getWidth() > getPreferredSize().width);
                }
            } 
            return false;
            }

    };

以上是我的代码JTable,但水印不可见;让我补充一点,稍后我将它JTable放在一个JScrollPaneandJSplitPane中。

4

3 回答 3

3

有一些错误

真的不是好主意,paint(Graphics g)用于AWT 代码,因为 Swing 在那里,在 Swing 中使用会向 Swing GUI 显示意外的输出,Swing JComponentspaint()paintComponent(Graphics g)paint(Graphics g)

对于AWTpaint(Graphics g)代码或paintComponent(Graphics g)Swing 代码在任何Renderer

您必须准备 JTable 的 BackGroung,如此处所示TableWithGradientPaint

于 2011-07-20T14:28:27.703 回答
3

两种可能的解决方案,但我不知道是哪一种。:DI 认为第一种方法成功率最高。

第一种方法

覆盖您的paintComponent(Graphics g)方法:

public void paintComponent(Graphics g)
{
    //First super
    super.paintComponent(g);

    g.drawImage(0, 0, getWidth(), getHeight());
}

第二种方法

将您的 JTable opaque 设置为 false:table.setOpaque(false);
覆盖您的paintComponent(Graphics g)方法:

public void paintComponent(Graphics g)
{
    //First draw
    g.drawImage(0, 0, getWidth(), getHeight());

    super.paintComponent(g);
}
于 2011-07-20T14:48:05.580 回答
1

super.paint(g)在绘制水印之前尝试调用,这JTable可能是在您的图像上绘制。

于 2011-07-20T14:16:14.883 回答