package GUI1;
import javax.swing.*;
import java.awt.*;
public class test3 {
public static void main(String[] args) {
JFrame jframe=new JFrame("操作事件");
jframe.setLocation(220,160);
jframe.setSize(320,240);
JButton jButton=new JButton("设置字体颜色");
JPanel jPanel=new JPanel();
JLabel jLabel=new JLabel("字体颜色");
jLabel.setForeground(Color.red);
jLabel.setOpaque(true);
jLabel.setBackground(Color.black);
jPanel.setBackground(Color.white);
jframe.setLayout(null);
jPanel.setLayout(null);
jButton.setBounds(50,145,200,50);
jLabel.setBounds(0,0,100,100);
jPanel.setBounds(10,0,280,140);
jframe.add(jPanel);
jframe.add(jButton);
jPanel.add(jLabel);
jframe.setDefaultCloseOperation(3);
jframe.setVisible(true);
}
}
为什么 jLabel.setBounds(0,0,100,100);x和y坐标都为0为什么显示出来的字会在中间