关于setContentPane()和getContentPane()的应用
JFrame 有一个 Content Pane,窗口能显示的所有组件都是添加在这个 Content Pane 中。JFrame 提供了两个方法:getContentPane 和 setContentPane 就是用于获取和设置其 Content Pane 的。
对JFrame添加组件有两种方式:
1)用getContentPane()方法获得JFrame的内容面板,再对其加入组件:frame.getContentPane().add(childComponent)
2)建立一个Jpanel或JDesktopPane之类的中间容器,把组件添加到容器中,用setContentPane()方法把该容器置为JFrame的内容面板:
JPanel
……//把其它组件添加到Jpanel中;
frame.setContentPane(contentPane);
//把contentPane对象设置成为frame的内容面板
import javax.swing.*;
import java.awt.*;
public class example9_1 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
JFrame window1=new JFrame("第一个窗口");
JFrame window2=new JFrame("第二个窗口");
Container con=window1.getContentPane();
con.setBackground(Color.yellow);
window1.setBounds(60,100,188,108);
window2.setBounds(260,100,188,108);
window1.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
window2.setVisible(true);
window1.setVisible(true);
window2.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
}
}