JPanel里放入图片问题
这里有张图片,插入了,但是上下总是留空隙,怎么去掉这个空隙?纠结的呢,望高手给个答案,谢谢!下面是我测试的方法,问题依旧...packagecom.Test4;impor...
这里有张图片,插入了,但是上下总是留空隙,怎么去掉这个空隙?纠结的呢,望高手给个答案,谢谢!下面是我测试的方法,问题依旧...
package com.Test4;
import java.awt.*;
import javax.swing.*;
public class Test extends JFrame{
JPanel jp;
JLabel jl;
ImageIcon background;
public static void main(String[] args) {
// TODO Auto-generated method stub
Test tt=new Test();
}
public Test()
{
jp=new JPanel();
background=new ImageIcon("image/picture2.JPG");
jl=new JLabel(background);
jl.setBounds(0, 0, background.getIconWidth(),background.getIconHeight());
jp.add(jl);
this.add(jp);
this.setSize(200,200);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
} 展开
package com.Test4;
import java.awt.*;
import javax.swing.*;
public class Test extends JFrame{
JPanel jp;
JLabel jl;
ImageIcon background;
public static void main(String[] args) {
// TODO Auto-generated method stub
Test tt=new Test();
}
public Test()
{
jp=new JPanel();
background=new ImageIcon("image/picture2.JPG");
jl=new JLabel(background);
jl.setBounds(0, 0, background.getIconWidth(),background.getIconHeight());
jp.add(jl);
this.add(jp);
this.setSize(200,200);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
} 展开
2个回答
展开全部
class MyJP extends JPanel{ //这里是 AWT的.. Image image=null; MyJP(Image i){ image=i; } //固定背景图片,允许这个JPanel可以在图片上添加其他
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询