Java中如何做到单击按钮后更换背景图片 10
ImageIconiconStartBackgound=newImageIcon("startBackgound.png");//创建图片的Icon对象JLabellab...
ImageIcon iconStartBackgound = new ImageIcon("startBackgound.png");
//创建图片的Icon对象
JLabel labelStartBackgound = new JLabel(iconStartBackgound);
//创建JLabel对象
labelStartBackgound.setBounds(0,0,iconStartBackgound.getIconWidth(),
iconStartBackgound.getIconHeight());
//设置图片位置
JPanel backgoundPanel = (JPanel) getContentPane();
// 把内容窗格转化为JPanel,否则不能用方法setOpaque()来使窗口透明
(backgoundPanel).setOpaque(false);
//使窗口透明
getLayeredPane().add(labelStartBackgound, new Integer(Integer.MIN_VALUE));
//设置为背景图片最底层
这是设置背景的代码,要能单击代码后更换背景图片为另一个图片 展开
//创建图片的Icon对象
JLabel labelStartBackgound = new JLabel(iconStartBackgound);
//创建JLabel对象
labelStartBackgound.setBounds(0,0,iconStartBackgound.getIconWidth(),
iconStartBackgound.getIconHeight());
//设置图片位置
JPanel backgoundPanel = (JPanel) getContentPane();
// 把内容窗格转化为JPanel,否则不能用方法setOpaque()来使窗口透明
(backgoundPanel).setOpaque(false);
//使窗口透明
getLayeredPane().add(labelStartBackgound, new Integer(Integer.MIN_VALUE));
//设置为背景图片最底层
这是设置背景的代码,要能单击代码后更换背景图片为另一个图片 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询