這篇文章將為大家詳細(xì)講解有關(guān)JFrame中如何添加和設(shè)置JPanel,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
老邊網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián),老邊網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為老邊數(shù)千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的老邊做網(wǎng)站的公司定做!
Swing 程序用JFrame 對(duì)象實(shí)現(xiàn)了它們的窗口。JFrame 類是AWT Frame 類的一個(gè)子類。它還加入了一些Swing 所獨(dú)有的特性。與 Frame 的使用十分相似。唯一的區(qū)別在于,你不能將組件加入到JFrame中。你可以或者將組件加入到JFrame 的content pane(內(nèi)容面板) 中,或者提供一個(gè)新的content pane(內(nèi)容面板)。
面板與頂層容器的不同點(diǎn):面板不能獨(dú)立存在,必須被添加到其他容器內(nèi)部(面板可以嵌套)。
JFrame 有一個(gè) Content Pane,窗口能顯示的所有組件都是添加在這個(gè) Content Pane 中。JFrame 提供了兩個(gè)方法: getContentPane 和 setContentPane 就是用于獲取和設(shè)置其 Content Pane 的。
對(duì)JFrame添加組件有兩種方式:
1)用 getContentPane ()方法獲得JFrame的內(nèi)容面板,再對(duì)其加入組件:frame. getContentPane ().add(childComponent)
2)建立一個(gè)Jpanel或JDesktopPane之類的中間容器,把組件添加到容器中,用setContentPane()方法把該容器置為JFrame的內(nèi)容面板:
JPanel contentPane = new JPanel(); ……//把其它組件添加到Jpanel中; frame.setContentPane(contentPane); //把contentPane對(duì)象設(shè)置成為frame的內(nèi)容面板
實(shí)例程序:
import java.awt.*; import javax.swing.*; public class JFrameWithPanel { public static void main(String[] args) { JFrame frame = new JFrame("Frame With Panel"); Container contentPane = frame.getContentPane(); contentPane.setBackground(Color.CYAN); // 將JFrame實(shí)例背景設(shè)置為藍(lán)綠色 JPanel panel = new JPanel(); // 創(chuàng)建一個(gè)JPanel的實(shí)例 panel.setBackground(Color.yellow); // 將JPanel的實(shí)例背景設(shè)置為黃色 JButton button = new JButton("Press me"); panel.add(button); // 將JButton實(shí)例添加到JPanel中 contentPane.add(panel, BorderLayout.SOUTH); // 將JPanel實(shí)例添加到JFrame的南側(cè) frame.setSize(300, 200); frame.setVisible(true); } }
截圖:
關(guān)于“JFrame中如何添加和設(shè)置JPanel”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。