JLabel canZhaoTuLabel = new JLabel(new ImageIcon("D://Ikun.png")); canZhaoTuLabel.setVisible(true); canZhaoTuLabel.setBounds(0, 0, this.getWidth(), this.getHeight()); //设置位置和大小 // this.add(canZhaoTuLabel);//把参照图添加到窗体上 JPanel jp= (JPanel) this.getContentPane(); //面板 jp.setBounds(0, 0, this.getWidth(), this.getHeight()); jp.add(canZhaoTuLabel);
时间: 2023-05-13 15:04:26 浏览: 99
javaswing项目源码-example:实验会话的示例项目。源代码是从https://www.javatpoint.com/library
这段代码是用 Java Swing 实现的,用于在窗体上添加一个图片。首先创建一个 JLabel 对象,然后将图片作为参数传入 ImageIcon 构造函数中,再将 JLabel 对象添加到 JPanel 中,最后将 JPanel 添加到窗体上。
阅读全文