用JFrame时,设置背景颜色需使用JFrame.getContentPane().setBackground(Color.red)
Container con=this.getContentPane();//得到内容窗格
con.setBackground(Color.blue);
而使用Frame时则可以直接使用setBackground(Color.red),且需要设置窗体默认关闭事件,否则运行窗口无法正常关闭。
将按钮添加到面板,再将面板添加到框架中,要通过面板来调用setBackground()方法来设置框架的背景颜色,直接使用myFrame.setBackground(Color.GREEN);是不会起作用的。原因是JFrame一旦创建,其中已包含一个内容面板,此时myFrame.setBackground无论设置成什么颜色,都将被顶层面板所覆盖。因此,要改变背景颜色,就要改变面板的背景颜色。
import javax.swing.*;
import java.awt.*;
public class win {public static void main(String args[]){JFrame window1=new JFrame("第一个窗口");JFrame window2=new JFrame("第二个窗口");Container con=window1.getContentPane();//得到内容窗格con.setBackground(Color.BLACK);window1.setBounds(60, 100, 188, 108);//等价于//window1.setSize(188,108);//window1.setLocation(60,100);window2.setBounds(260, 100, 188, 108);window1.setVisible(true);//是否可见window1.setResizable(false);//不可以调整窗口的大小window1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);window2.setVisible(true);window2.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);}}
给窗口添加背景:(使用电脑上的图片设置背景)
路径的书写:
C:/Users/86156/OneDrive/图片/手机上的高清图片/你的名字.png
import java.awt.*;
import javax.swing.*;public class BgTest extends JFrame{public BgTest(){init();this.setTitle("背景图设置");this.setSize(200, 300);//设置窗体大小this.setLocation(600,300);this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);this.setResizable(true);this.setVisible(true);}private void init() {JLabel lbl1 = new JLabel("用户名:");//两个标签JLabel lbl2 = new JLabel("密 码:");JTextField txt = new JTextField(10);JPasswordField pasw = new JPasswordField(10);//密码输入框pasw.setEchoChar('*');JButton btn1 = new JButton("登录");JButton btn2 = new JButton("取消");ImageIcon img = new ImageIcon("C:/Users/86156/OneDrive/图片/手机上的高清图片/你的名字.png");//要设置的背景图片JLabel imgLabel = new JLabel(img);//将背景图放在标签里。this.getLayeredPane().add(imgLabel, new Integer(Integer.MIN_VALUE));//将背景标签添加到jfram的LayeredPane面板里。imgLabel.setBounds(0, 0, img.getIconWidth(), img.getIconHeight());// 设置背景标签的位置Container contain = this.getContentPane();((JPanel) contain).setOpaque(false); // 将内容面板设为透明。将LayeredPane面板中的背景显示出来。contain.setLayout(new FlowLayout());contain.add(lbl1);contain.add(txt);contain.add(lbl2);contain.add(pasw);contain.add(btn1);contain.add(btn2);}public static void main(String[] args) {new BgTest(); }
}
Image直属java.awt包,抽象类。BufferImage为image的直接子类,增加了缓冲功能。BufferedImage生成的图片在内存里有一个图像缓冲区,利用这个缓冲区我们可以很方便的操作这个图片,通常用来做图片修改操作如大小变换、图片变灰、设置图片透明或不透明等。加载图片到内存:
BufferedImage image = ImageIO.read(new FileInputStream(imgPath));//利用getGraphics()函数获得图形上下文作进一步操作。//Image image=imageToolkit.getDefaultToolkit().getImage(imgPath);这种方法并未将图片加载到内存,仅仅是引用。ImageIcon直属javax.swing包
类定义:
public class ImageIcon extends Object implements Icon, Serializable, Accessible。
imageicon与image的关系是:imageicon利用image绘制icon。不过,Image一般尺寸较大,不适合用作icon(大图片用作icon时只显示图片的一部分),需要经过处理:
ImageIcon imageIcon = new ImageIcon(new File(path));
Image image = imageIcon.getImage();
image = image.getScaledInstance(30,20,Image.SCALE_FAST);
ImageIcon icon = new ImageIcon(image);//利用imageicon的构造函数 public ImageIcon(Image i)
窗口的大小和图片大小一样
主要思路:
1.把图片添加到标签里(把标签的大小设为和图片大小相同),把标签放在分层面板的最底层;
2.把窗口面板设为内容面板并设为透明、流动布局。
3.之后把组件和面板添加到窗口面板就可以;
大白话翻译:
把JFrame想象成一个桌子,桌子上面有个木板,组件和面板就是木板上的物品,我们就是把桌子上的木板换为玻璃板,然后把背景图放在玻璃板下面,把物品放在玻璃板上面;
package lfs;import java.awt.FlowLayout;import javax.swing.*;public class ImageDemo {public static void main(String[] args) {JFrame jf=new JFrame("背景图片测试");//1.把图片添加到标签里(把标签的大小设为和图片大小相同),把标签放在分层面板的最底层;ImageIcon bg=new ImageIcon("C:/Users/86156/OneDrive/图片/手机上的高清图片/动漫图片.jpg");JLabel label=new JLabel(bg);label.setSize(bg.getIconWidth(),bg.getIconHeight());jf.getLayeredPane().add(label,new Integer(Integer.MIN_VALUE));//2.把窗口面板设为内容面板并设为透明、流动布局。JPanel pan=(JPanel)jf.getContentPane();pan.setOpaque(false);pan.setLayout(new FlowLayout());//3.之后把组件和面板添加到窗口面板就可以;JButton btn=new JButton("测试按钮");pan.add(btn);jf.setSize(bg.getIconWidth(),bg.getIconHeight());jf.setLocationRelativeTo(null);jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);jf.setVisible(true);}}