谁能够帮我写写java制作一个带图片背景,含菜单、子菜单,标题的一个窗口!不胜感激……!

 我来答
匿名用户
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,代码放进去就是了,包的话自己看着办,删了或者改了
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式