java用户界面加入图片,有代码,要代码,向界面中加入背景图片!新手求教!详见补充;
importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;importjava.util.*;importj...
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;
import javax.swing.event.*;
class booking_manage extends JFrame
implements ActionListener
{
public static void main(String[] args) {
new booking_manage();
}
JMenuBar jm =new JMenuBar(); //创建一个工具条对象
JMenu jm1 =new JMenu("0000"); //创建文件菜单对象
JMenu jm5=new JMenu("0000");//创建文件菜单对象
JMenuItem jm51=new JMenuItem("0000");//创建菜单项对象
Container con=new Container();
JLabel label=new JLabel("0000",JLabel.CENTER);
JPanel pCenter=new JPanel();
public booking_manage()
{
this.setTitle("0000");
this.setLayout(new CardLayout());
con=getContentPane();
pCenter.setLayout(new CardLayout());
label.setFont(new Font("TimesRoman",Font.BOLD,24));
label.setForeground(Color.red);
this.setJMenuBar(jm); //设置工具条、菜单及菜单项
jm.add(jm1);
jm5.add(jm51);
jm51.addActionListener(this);
con.add(pCenter,BorderLayout.CENTER);
con.validate();
this.setBounds(350,150,700,500);
this.setVisible(true);
addWindowListener(new WindowAdapter() //设置事件监听
{ public void windowClosing(WindowEvent e)
{
System.exit(0); //关闭窗口
}
});
}
public void actionPerformed(ActionEvent e) //设置监听事件处理
{
;
}
} 展开
import java.awt.event.*;
import javax.swing.*;
import java.util.*;
import javax.swing.event.*;
class booking_manage extends JFrame
implements ActionListener
{
public static void main(String[] args) {
new booking_manage();
}
JMenuBar jm =new JMenuBar(); //创建一个工具条对象
JMenu jm1 =new JMenu("0000"); //创建文件菜单对象
JMenu jm5=new JMenu("0000");//创建文件菜单对象
JMenuItem jm51=new JMenuItem("0000");//创建菜单项对象
Container con=new Container();
JLabel label=new JLabel("0000",JLabel.CENTER);
JPanel pCenter=new JPanel();
public booking_manage()
{
this.setTitle("0000");
this.setLayout(new CardLayout());
con=getContentPane();
pCenter.setLayout(new CardLayout());
label.setFont(new Font("TimesRoman",Font.BOLD,24));
label.setForeground(Color.red);
this.setJMenuBar(jm); //设置工具条、菜单及菜单项
jm.add(jm1);
jm5.add(jm51);
jm51.addActionListener(this);
con.add(pCenter,BorderLayout.CENTER);
con.validate();
this.setBounds(350,150,700,500);
this.setVisible(true);
addWindowListener(new WindowAdapter() //设置事件监听
{ public void windowClosing(WindowEvent e)
{
System.exit(0); //关闭窗口
}
});
}
public void actionPerformed(ActionEvent e) //设置监听事件处理
{
;
}
} 展开
1个回答
展开全部
import java.awt.*;
import javax.swing.*;
public class TestBackgroundColor extends JFrame
{
public static void main(String[] args)
{
// TODO Auto-generated method stub
TestBackgroundColor tbc = new TestBackgroundColor();
tbc.setVisible(true);
}
private JPanel imagePanel;
private ImageIcon background;
public TestBackgroundColor()
{
background = new ImageIcon("D:\\Documents and Settings\\Administrator\\Workspaces\\MyEclipse 8.x\\面试题\\src\\221-ok.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);
}
}
import javax.swing.*;
public class TestBackgroundColor extends JFrame
{
public static void main(String[] args)
{
// TODO Auto-generated method stub
TestBackgroundColor tbc = new TestBackgroundColor();
tbc.setVisible(true);
}
private JPanel imagePanel;
private ImageIcon background;
public TestBackgroundColor()
{
background = new ImageIcon("D:\\Documents and Settings\\Administrator\\Workspaces\\MyEclipse 8.x\\面试题\\src\\221-ok.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);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询