谁能够帮我写写java制作一个带图片背景,含菜单、子菜单,标题的一个窗口!不胜感激……!
1个回答
2014-11-23
展开全部
图片自己替换,工程src/img下
package com.homework;
import java.awt.BorderLayout;
public class UI extends JFrame {
private JPanel contentPane;
private URL bg=this.getClass().getResource("/img/bg.png");
private ImageIcon bg1=new ImageIcon(bg) {
};
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
UI frame = new UI();
frame.setTitle("作业");
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public UI() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 300, 300);
JMenuBar menuBar = new JMenuBar();
setJMenuBar(menuBar);
JMenu mnMenu = new JMenu("menu");
menuBar.add(mnMenu);
JMenuItem mntmItem = new JMenuItem("item");
mnMenu.add(mntmItem);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
JLabel lblBackground = new JLabel("");
lblBackground.setIcon(bg1);
lblBackground.setBounds(0, 0, 284, 259);
contentPane.add(lblBackground);
}
}
更多追问追答
追问
这个怎么分的class的代码与主程序的?
追答
建一个类UI,代码放进去就是了,包的话自己看着办,删了或者改了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询