怎么在Myeclipse的可视化界面弄背景图片,就是要弄个背景图片,再在背景图片上弄按钮的

是要在可视化设置就可以,还是要在代码那边设置呢,如果是代码,是什么代码呢,求解释啊... 是要在可视化设置就可以,还是要在代码那边设置呢,如果是代码,是什么代码呢,求解释啊 展开
 我来答
我叫张雅妮
推荐于2016-05-22
知道答主
回答量:11
采纳率:0%
帮助的人:4.5万
展开全部

import java.awt.*;

import javax.swing.*;

public class TestBackgroundColor extends JFrame  {

public static void main(String[] args)  {

TestBackgroundColor tbc = new TestBackgroundColor();

tbc.setVisible(true);

}

private JPanel imagePanel;

private ImageIcon background;

public TestBackgroundColor()  {

background = new ImageIcon("C:\\Users\\Administrator\\Documents\\

My FTPRush Downloads\\项目\\Photoes\\007.jpg");//背景图片

JLabel label = new JLabel(background);//把背景图片显示在一个标签里面

//把标签的大小位置设置为图片刚好填充整个面板

label.setBounds(0,0,background.getIconWidth(),background.getIconHeight());

//把内容窗格转化为JPanel,否则不能用方法setOpaque()来使内容窗格透明

imagePanel = (JPanel)this.getContentPane();

imagePanel.setOpaque(false);

//内容窗格默认的布局管理器为BorderLayout

imagePanel.setLayout(new FlowLayout());

imagePanel.add(new JButton("测试按钮"));

this.getLayeredPane().setLayout(null);

//把背景图片添加到分层窗格的最底层作为背景

this.getLayeredPane().add(label,new Integer(Integer.MIN_VALUE));

this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

this.setSize(background.getIconWidth(),background.getIconHeight());

this.setVisible(true);

}

}

实现效果:

渴侯雅素3Q
2019-12-06 · TA获得超过756个赞
知道答主
回答量:2865
采纳率:4%
帮助的人:201万
展开全部
这个嘛,我也不懂啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式