1. 程式人生 > >利用JPanel和JLabel設定背景圖片

利用JPanel和JLabel設定背景圖片

     //建立面板1,放置背景圖片1
        JPanel jPanelTop=new JPanel();
        jPanelTop.setBounds(0,-5,100,100);  //x=0,y=-5用來設定面板距離窗體左上角的距離(單位是畫素)
        jPanelTop.setOpaque(true);
        JLabel jLabel=new JLabel();  //建立JLabel標籤,用來存放背景圖片
        jLabel.setBounds(0,0,100,100);
        Icon icon=new ImageIcon("doc/ChinaJiLiang.png
"); //根據所給圖片,生成指定大小的圖示 jLabel.setIcon(icon); //設定標籤要顯示的圖示 jPanelTop.add(jLabel); //將標籤新增到面板中