如何为 JScrollPane 的视口绘制引导标记

How to draw a Guide Marker for the Viewport of JScrollPane

我有 JFrame,它包含一个 Jscrollpane,而 Jscrollpane 又包含一个 Jpanel,其中显示图像。所有鼠标事件和绘图都与 Jpanel 坐标有关。现在,我想在 ViewPort 的顶部放置一个参考线标记,无论图像被缩放还是平移,标记都应该保持不变。最好的方法是什么?提前致谢。

您可以在滚动窗格的视口上进行自定义绘制:

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

public class ViewportBackground
{
    private static void createAndShowUI()
    {
        JViewport viewport = new JViewport()
        {
            @Override
            protected void paintChildren(Graphics g)
            {
                super.paintChildren(g);
                int w = this.getWidth();
                int h = this.getHeight();
                g.drawLine(0, 0, w, h);
            }
        };

        JScrollPane scrollPane = new JScrollPane();
        scrollPane.setViewport(viewport);
        scrollPane.setViewportView( new JLabel( new ImageIcon(...) ) );

        JFrame frame = new JFrame("Viewport Background");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add( scrollPane );
        frame.setLocationByPlatform( true );
        frame.pack();
        frame.setVisible( true );
    }

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