如何绘制JScrollPane的顶部?

时间:2013-05-24 18:44:03

标签: java swing jframe jscrollpane paint

我有JScrollPane填充JPanel(这是我JFrame的内容窗格)。 JPanel执行自定义绘图 - 但是,它不会显示在JScrollPane的顶部。我应该覆盖paintComponent以外的其他内容吗?

这是一个演示:

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.LayoutManager;

import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.SwingUtilities;

public class Test {

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

            @Override
            public void run() {
                // Create the frame.
                JFrame frame = new JFrame();
                frame.setPreferredSize(new Dimension(1024, 768));
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

                JPanel custom = new CustomPanel(new BorderLayout());
                // Add the scroll pane.
                JScrollPane scroll = new JScrollPane();
                scroll.setBorder(BorderFactory.createLineBorder(Color.blue));
                custom.add(scroll, BorderLayout.CENTER);

                // Display the frame.
                frame.setContentPane(custom);
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }

        });
    }
}

@SuppressWarnings("serial")
class CustomPanel extends JPanel {

    public CustomPanel(LayoutManager lm) {
        super(lm);
    }

    @Override
    public void paintComponent(Graphics g) {
        g.setColor(Color.red);
        g.drawRect(200, 200, 200, 200);
    }

}

4 个答案:

答案 0 :(得分:3)

  

我希望JPanel上的油漆能够超越油漆   JScrollPane

你可以画到

  • JViewport,您可以看到herehere

  • 使用JLayer(Java7) based on JXlayer(Java6)

  • 非常类似(就像今天的JLayer)正在绘制GlassPane,注意GlassPaneconsume()(默认情况下)MouseEvent如果有的话({1}} )添加了一些JComponent(s),GlassPane可以覆盖整个RootPane或仅覆盖可用矩形的一部分,取决于已使用的LayoutManagerDimension返回JComponent(s)

答案 1 :(得分:0)

只是一个简单的问题。您正在将滚动窗格添加到隐藏您正在绘制的内容的custompanel。相反,请考虑使用cutsompanel作为内容初始化您的滚动窗格。

示例:

JScrollPane scrlPane = new JScrollPane(customPanel);

答案 2 :(得分:0)

将单个组件添加到BorderLayout并指定BorderLayout.CENTER时,组件将展开以完全填充其父组件。如果组件是不透明的,您将无法在父级中看到任何自定义绘制。

答案 3 :(得分:0)

工作方式(如@mKorbel建议的那样)是使用JViewport:

scroll.setViewport(new CustomViewPort());

其中CustomViewPort是一个扩展JViewport的类,它会覆盖paintComponent方法。