• 大小: 3KB
    文件类型: .java
    金币: 1
    下载: 0 次
    发布日期: 2021-05-30
  • 语言: Java
  • 标签:

资源简介

编写一个图形用户界面程序,要求含有菜单(包含二级菜单)、标签、文本框、文本区、单选按钮、复选框、列表框、下拉列表框等;

资源截图

代码片段和文件信息

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.Jframe;
import javax.swing.JMenu;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.JTextArea;
import javax.swing.JRadioButton;
import javax.swing.JComboBox;
import javax.swing.DefaultListModel;
import javax.swing.*;
import javax.swing.JCheckBox;
import javax.swing.JMenuBar;
import java.awt.GridLayout;
import java.awt.FlowLayout;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
public class JMenuDemo extends Jframe {
public JMenuDemo(){


setSize(300300);
setLocation(400400);
                settitle(“09级专升本2班李保珠“);
setDefaultCloseOperation(Jframe.EXIT_ON_CLOSE);
setLayout(new BorderLayout());

JMenuItem item1=new JMenuItem(“子菜单一“);
JMenuItem item2=new JMenuItem(“子菜单二“);                            
JMenuItem item3=new JMenuItem(“退出“);

item2.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
JOptionPane.showMessageDialog(null“点击了“);
}
});


JMenuBar menuBar=new JMenuBar();


JMenu menu1=new JMenu(“菜单一“);
menu1.add(item1);
menu1.add(item2);
JMenu men

评论

共有 条评论

相关资源