import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class Test extends JFrame implements ActionListener
{
JPanel panel=new JPanel();
Test()
{
Container con=getContentPane();
con.setLayout(new FlowLayout(FlowLayout.LEFT));
panel.setBackground(Color.white);
con.add(panel);
setSize(400,300);
setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
}
public static void main(String[] args)
{
Test ap=new Test();
ap.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
能看到的,就是小了点,是白色的点
把panel的大小设置大点就能看出来了
panel.setPreferredSize(0,0,100,100);
用awt组件的Panel 用setSize()设置
swing中JPanel用setPreferredSize()
偶也是新手,希望知道的给个更准确的说法