且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何使用透明JFrame上的paintComponent重置图形?

更新时间:2023-12-05 18:03:10

  1. 确保您的组件不透明
  2. 要使透明度发挥作用,您无需在paintComponent()中做任何事情(特别是不用WHITE填充矩形)
  3. 每当要重置所有内容时,请设置标志或条件并调用repaint().在paintComponent()中,检查该标志或条件,如果为true,则不要绘制任何内容.
  1. Make sure your components are non-opaque
  2. For the transparency to work, you don't need to do anything in the paintComponent() (especially not filling a rectangle with WHITE)
  3. Whenever you want to reset everything, set a flag or a condition and invoke repaint(). In the paintComponent(), check for that flag or condition and if true, don't paint anything.

这是一个半透明框架的小演示,该框架在鼠标移动到的任何地方都画了一条线.每当您单击框架时,它都会删除所有内容.

Here is a small demo of a semi-transparent frame which paints a line everywhere your mouse goes. Whenever you click on the frame, it removes everything.

import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Point;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.io.IOException;
import java.net.MalformedURLException;
import java.util.ArrayList;
import java.util.List;

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

public class TestTransparentFrame {

    private class PaintPanel extends JPanel {
        private List<Point> points = new ArrayList<Point>();

        public PaintPanel() {
            setOpaque(false);
            MouseAdapter adapter = new MouseAdapter() {
                @Override
                public void mouseClicked(MouseEvent e) {
                    points.clear();
                    repaint();
                }

                @Override
                public void mouseMoved(MouseEvent e) {
                    points.add(e.getPoint());
                    repaint();
                }
            };
            addMouseListener(adapter);
            addMouseMotionListener(adapter);
            setBorder(BorderFactory.createLineBorder(Color.GREEN));
        }

        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            if (points.size() > 1) {
                g.setColor(Color.RED);
                Point p1 = points.get(0);

                for (int i = 1; i < points.size(); i++) {
                    Point p2 = points.get(i);
                    g.drawLine(p1.x, p1.y, p2.x, p2.y);
                    p1 = p2;
                }
            }
        }

        @Override
        public Dimension getPreferredSize() {
            return new Dimension(700, 500);
        }
    }

    protected void createAndShowGUI() throws MalformedURLException, IOException {
        JFrame frame = new JFrame("Test transparent painting");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setUndecorated(true);
        frame.setBackground(new Color(0, 0, 0, 50));
        frame.add(new PaintPanel());
        frame.pack();
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    new TestTransparentFrame().createAndShowGUI();
                } catch (MalformedURLException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        });

    }

}