java背景变换代码 java更换背景( 三 )


jp2.add(jb2);
jp2.add(jb3);
setLayout(new BorderLayout()); // 窗体设定为边界布局
this.add(jp1, BorderLayout.NORTH); // 标签面板放在窗体上端
this.add(jp2, BorderLayout.CENTER); // 按钮面板放在窗体中间
setBounds(400, 300, 300, 140); // 设定窗体大小和位置
setTitle("【实验10-1】座号25java背景变换代码,王涛\n"); // 设定窗体标题
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true); // 设定窗体可见
}
}
public class Experiment10_1 {
public static void main(String[] args) {
new Frame1();
}
}
java 编程 背景颜色的改变**************************************************************
新建一个类ChangeColor.java,代码如下java背景变换代码:
**************************************************************
import java.awt.Color;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionListener;
import javax.swing.JFrame;
/**
* @author Godwin
* @version 2010-05-16
*/
public class ChangeColor extends JFrame implements MouseMotionListener {
public ChangeColor() {
this.setTitle("Change Color");
this.setBounds(300, 200, 400, 300);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
this.getContentPane().setBackground(Color.GREEN);
this.addMouseMotionListener(this);
}
public void mouseMoved(MouseEvent e) {
if (e.getX()(this.getWidth() / 2)) {
this.getContentPane().setBackground(Color.RED);
} else {
this.getContentPane().setBackground(Color.BLUE);
}
}
public void mouseDragged(MouseEvent e) {
}
public static void main(String[] args) {
new ChangeColor();
}
}
**************************************************************
运行结果如下java背景变换代码:
**************************************************************
JAVA点击按钮改变背景图片 跪求代码·// 不加包,图片跟类文件在一个目录,命令行下编译执行就行了
// 如果建工程,图片放到工程根目录
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class Student extends JFrame {
public Student() {
init();
}
private void init() {
final Container c = getContentPane();
final JLabel imgLabel = new JLabel();
JButton btnPic = new JButton("换背景图片");
btnPic.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
ImageIcon img = new ImageIcon(System.getProperty("user.dir") + "\\a.png");
imgLabel.setIcon(img);
imgLabel.setBounds(0, 0, img.getIconWidth(), img.getIconHeight());
}
});
((JPanel)getContentPane()).setOpaque(false);
getLayeredPane().add(imgLabel, new Integer(Integer.MIN_VALUE));
setLayout(new FlowLayout());
add(btnPic);
setSize(500, 500);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
new Student().setVisible(true);
}
【java背景变换代码 java更换背景】java背景变换代码的介绍就聊到这里吧 , 感谢你花时间阅读本站内容,更多关于java更换背景、java背景变换代码的信息别忘了在本站进行查找喔 。

推荐阅读