JAVA JButton按钮嵌套,一个大按钮了放一个小按钮,怎么让小按钮在大按钮的底部?
晕!我自己试出来的!花了好长时间!重点是button.setLayout(null)啊!
import javax.swing.JButton;
import javax.swing.JFrame;
public class test {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setVisible(true);
frame.setSize(400, 400);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton button = new JButton("OK");
JButton button1 = new JButton("订购");
button.setLayout(null);
button1.setBounds(150, 300, 100, 40);
button.setBounds(0, 0, 400, 400);
button.add(button1);
frame.add(button);
}
}