我有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);
}
}
答案 0 :(得分:3)
我希望JPanel上的油漆能够超越油漆 JScrollPane
你可以画到
非常类似(就像今天的JLayer)正在绘制GlassPane
,注意GlassPane
到consume()
(默认情况下)MouseEvent
如果有的话({1}} )添加了一些JComponent
(s),GlassPane
可以覆盖整个RootPane
或仅覆盖可用矩形的一部分,取决于已使用的LayoutManager
和Dimension
返回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
方法。