gpt4 book ai didi

java - PaintComponent 总是更新矩形

转载 作者:行者123 更新时间:2023-12-02 04:54:24 27 4
gpt4 key购买 nike

我在使用矩形时遇到一些问题

这是我的代码:

import java.awt.*;
import javax.swing.*;
import java.util.*;
public class square
{
JFrame fr=new JFrame("square");
Random acak=new Random();
JScrollPane sc;
int tinggi,lebar;
JTabbedPane tab=new JTabbedPane();
square()
{
fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fr.setLocation(0,0);
fr.setExtendedState(JFrame.MAXIMIZED_BOTH);
fr.setLayout(new GridLayout(1,1));
tab.addTab("Panel1",new panel1());
tab.addTab("Panel2",new panel2());
fr.add(tab);
fr.show();
}
public static void main(String[] args)
{
new square();
}
}
class panel1 extends JPanel
{
panel1()
{
}
public void paintComponent(Graphics g3)
{
int x=(int)(Math.random()*500);
int y=(int)(Math.random()*500);
g3.setColor(Color.red);
g3.fillRect(x,y,100,100);
}
}
class panel2 extends JPanel
{
panel2()
{
}
public void paintComponent(Graphics g2)
{
int x=(int)(Math.random()*500);
int y=(int)(Math.random()*500);
g2.setColor(Color.blue);
g2.fillRect(x,y,100,100);
}
}

我随机使用坐标和大小

如果我切换选项卡,矩形的坐标和大小总是会改变。

如何只在第一次制作和协调???

最佳答案

首先查看 Painting in AWT and Swing了解绘画的工作原理。

基本上,当系统认为您的组件需要更新时,您的 paintComponent 方法将被(间接)调用,并且预计会呈现组件的当前状态。

绘画可能因多种原因而发生,其中大多数原因是您无法控制的。

不要在 paintComponent 方法中计算矩形的状态,而是使用一个您可以自己控制的方法来执行此操作,并让 paintComponent 方法简单地进行绘制.

关于java - PaintComponent 总是更新矩形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28913255/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com