Java - 透明的JScrollPane

时间:2010-08-19 00:05:35

标签: java swing jscrollpane

我有一个JTextArea,它正在JScrollPane上。无论如何,我知道我可以使用getViewPort()方法设置视口的不透明...但我似乎无法找到任何迹象表明如何做到这一点......任何地方。 :S

这是我到目前为止所做的:

 if (e.getKeyCode() == KeyEvent.VK_F)
{
    if (sp.isVisible())
    {
        sp.setVisible(false);
    }
    else
    {
        sp.setVisible(true);
    }
}

3 个答案:

答案 0 :(得分:21)

您需要使用setOpaque(false)使其透明。在JScrollPane和它的ViewPort上调用它。

sp.setOpaque(false);
sp.getViewport().setOpaque(false);

如果你想要透明,你还必须在JTextArea上调用setOpaque(false)

答案 1 :(得分:9)

您与@Serplat的对话表明您可能会混淆不透明度透明度

Opacity是用于优化绘图的Swing组件的布尔属性:

  • true:组件同意绘制其矩形边界内包含的所有位。
  • false:组件不保证在矩形范围内绘制所有位。

Transparency是一种合成数字图像的方法,如example所示。

考虑到这种区别可能有助于澄清您的问题或集中搜索更多信息。

附录:基于@ camickr的example,下面的示例显示了一个“粘贴”到视口的蓝色方块,而灰色棋盘可能会在其上滚动。

ScrollPanePaint

import java.awt.*;
import javax.swing.*;

/** @see https://stackoverflow.com/questions/2846497 */
public class ScrollPanePaint extends JFrame {

    private static final int TILE = 64;

    public ScrollPanePaint() {
        JViewport viewport = new MyViewport();
        viewport.setView(new MyPanel());
        JScrollPane scrollPane = new JScrollPane();
        scrollPane.setViewport(viewport);
        this.add(scrollPane);
        this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
        this.pack();
        this.setLocationRelativeTo(null);
        this.setVisible(true);
    }

    private static class MyViewport extends JViewport {

        public MyViewport() {
            this.setOpaque(false);
            this.setPreferredSize(new Dimension(6 * TILE, 6 * TILE));
        }

        @Override
        public void paintComponent(Graphics g) {
            super.paintComponent(g);
            g.setColor(Color.blue);
            g.fillRect(TILE, TILE, 3 * TILE, 3 * TILE);
        }
    }

    private static class MyPanel extends JPanel {

        public MyPanel() {
            this.setOpaque(false);
            this.setPreferredSize(new Dimension(9 * TILE, 9 * TILE));
        }

        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            g.setColor(Color.lightGray);
            int w = this.getWidth() / TILE + 1;
            int h = this.getHeight() / TILE + 1;
            for (int row = 0; row < h; row++) {
                for (int col = 0; col < w; col++) {
                    if ((row + col) % 2 == 0) {
                        g.fillRect(col * TILE, row * TILE, TILE, TILE);
                    }
                }
            }
        }
    }

    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {

            @Override
            public void run() {
                new ScrollPanePaint();
            }
        });
    }
}

答案 2 :(得分:2)

JScrollpane透明背景代码。

  JScrollPane scrollPane = new JScrollPane();

   JViewport viewport = new JViewport();


 //Component that need to be added in Scroll pane//

   viewport.setView(new JPanel());

   viewport.setOpaque(false);

   scrollPane.setViewport(viewport);

   scrollPane.getViewport().setOpaque(false);

   scrollPane.setOpaque(false);

 // Add Scrollpane to Jframe or JPanel//

   add( scrollPane,BorderLayout.CENTER);