我真的很困惑,我尝试将椭圆设置为正好在红色 JPanel 内,椭圆形太低了 5 像素。我试图将 y1 更改为 -5,以便它正好在 JPanel 中,椭圆形移动到正确的位置,但椭圆形的前五行被擦除了为什么会发生这些事情?以及如何将椭圆形放置在 JPanel 的中间?
package il.co.atlantis;
import javax.swing.*;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
public class PanelExample_Extended{
public static final int WID = 20, HEI = 20;
public static int x1 = 0, y1 = -5;
public class MyGraphics extends JComponent {
private static final long serialVersionUID = 7526472295622776147L;
MyGraphics() {
setPreferredSize(new Dimension(20,20));
}
public void paintComponent(Graphics g){
super.paintComponents(g);
g.setColor(Color.blue);
g.fillOval(x1, y1, WID, HEI);
}
}
public JPanel createContentPane (){
JPanel totalGUI = new JPanel();
totalGUI.setLayout(null);
JPanel redPanel = new JPanel();
redPanel.setBackground(Color.red);
redPanel.setLocation(10, 10);
redPanel.setSize(20,20);
MyGraphics tr = new MyGraphics();
tr.setLocation(0, 0);
redPanel.add(tr);
totalGUI.add(redPanel);
JPanel bluePanel = new JPanel();
bluePanel.setBackground(Color.blue);
bluePanel.setLocation(220, 10);
bluePanel.setSize(50, 50);
totalGUI.add(bluePanel);
totalGUI.setOpaque(true);
return totalGUI;
}
private static void createAndShowGUI() {
JFrame.setDefaultLookAndFeelDecorated(true);
JFrame frame = new JFrame("[=] ??? [=]");
PanelExample_Extended demo = new PanelExample_Extended();
frame.setContentPane(demo.createContentPane());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(290, 100);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
}
如果你从 -5 开始绘制,你就是从 JComponent 上绘制的,所以图像的那部分不会显示是有道理的。我认为您的问题源于尝试在默认情况下使用 FlowLayout 的 JPanel 上使用绝对定位(要避免的事情)。
如果您更好地描述您要做的事情,并可能向我们提供您想要的图像,我们也许能够更好地提供帮助。
试着给你的红色JPanel一个边框布局,看看会发生什么。
JPanel redPanel = new JPanel(new BorderLayout());
但最重要的是,请继续阅读并理解布局管理器。