java作业。创建一个窗口,里面有一个下拉菜单。菜单里面包括页面设置、页面背景、段落、主题。 另外 20
java作业。创建一个窗口,里面有一个下拉菜单。菜单里面包括页面设置、页面背景、段落、主题。另外随意添加密码框按钮啥的。会的私聊我。有福利。...
java作业。创建一个窗口,里面有一个下拉菜单。菜单里面包括页面设置、页面背景、段落、主题。
另外随意添加密码框按钮啥的。
会的私聊我。有福利。 展开
另外随意添加密码框按钮啥的。
会的私聊我。有福利。 展开
展开全部
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);
}
}
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);
}
}
追问
!!! 不符合要求啊
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询