5 回答
TA贡献1877条经验 获得超1个赞
for(MouseListener l : label.getMouseListener()){
if(...) label.removeMouseListener(l);
}
TA贡献1818条经验 获得超11个赞
可以..把在JLabel中加入图片.然后当成JApplet的背景..JButton放在JApplet上就行
//###################################
import java.awt.FlowLayout;
import javax.swing.*;
public class Test extends JApplet{
public Test()
{
JPanel jp=(JPanel)this.getContentPane(); //从JFrame 里面创建一个JPanel
jp.setOpaque(false); //JPanel 透明模式
ImageIcon img = new ImageIcon("c://Sunset.jpg"); //创建一个图片路径
JLabel background = new JLabel(img); //创建个带背景图片的JLabel
this.getLayeredPane().add(background,new Integer(Integer.MIN_VALUE));
background.setBounds(0, 0, img.getIconWidth(), img.getIconHeight());
jp.setLayout(new FlowLayout());
JButton jb=new JButton("我是按钮");
jp.add(jb);
}
}
TA贡献1818条经验 获得超3个赞
1: JButton有setIcon(Icon icon)的方法可以设置图片,
2: JLabel 也可以加入任意组件,add(Component c);这个方法
3:JLabel 默认布局是BorderLayout
4: 你的补充问题当然能实现,没问题
添加回答
举报