JAVA 写一个JPanel加上背景图片并和框架相同大小
展开全部
JPanel p=new JPanel();
JLabel l=new JLabel();
Icon icon=new ImageIcon("D:\\01.jpg"); //在此直接创建对象
l.setIcon(icon);
l.setBounds(0, 0, icon.getIconWidth(),icon.getIconHeight());
p.add(l,new Integer(Integer.MIN_VALUE));
你可以修改以下两项,达到你的目地
icon.getIconWidth(),
icon.getIconHeight()
JLabel l=new JLabel();
Icon icon=new ImageIcon("D:\\01.jpg"); //在此直接创建对象
l.setIcon(icon);
l.setBounds(0, 0, icon.getIconWidth(),icon.getIconHeight());
p.add(l,new Integer(Integer.MIN_VALUE));
你可以修改以下两项,达到你的目地
icon.getIconWidth(),
icon.getIconHeight()
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询