首页>代码>java swing编写俄罗斯方块小游戏源代码下载>/russia/src/russia/game/square/GameStart.java
package russia.game.square;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.*;



@SuppressWarnings("serial")
public class GameStart extends JFrame {
	public GameStart() {
		init();

	}

	private void init() {

		setTitle("俄罗斯方块");
		RussiaGame rus = new RussiaGame();
		JMenuBar menu = new JMenuBar();

		setJMenuBar(menu);
		JMenu help = new JMenu("帮助");
		help.setActionCommand("help");
		JMenuItem about = help.add("关于");
		about.setActionCommand("about");
		 setUndecorated(true); 
		about.addActionListener(new ActionListener() {

		public void actionPerformed(ActionEvent e) {
				StringBuilder sbd = new StringBuilder();
				
				sbd.append("制作人:小李 我们一起交流 互相学习");
				if (e.getActionCommand().equals("about"))
					JOptionPane.showMessageDialog(null, sbd.toString());

			}
		});
		add(rus, java.awt.BorderLayout.CENTER);
	    addKeyListener(rus);
		menu.add(help);
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		setUndecorated(true);
		setSize(500, 500);
		setLocation(300,200); 
		setVisible(true);
  
		setResizable(false);

	}

	public static void main(String[] args) {
		new GameStart();
	}

	public void actionPerformed(ActionEvent e) {
		// TODO Auto-generated method stub

	}

}
最近下载更多
ClydeSon  LV5 2023年12月27日
艾卡西亚没有暴雨  LV1 2021年6月9日
我叫杜有青  LV1 2021年3月5日
lyh3568263744  LV2 2020年12月19日
Care269031877  LV4 2020年12月18日
bhdzhhd  LV1 2020年12月2日
zzwllkw  LV1 2020年11月29日
xzx666  LV1 2020年11月16日
hhhhhjqjq  LV1 2020年7月1日
konodion  LV1 2020年6月28日
最近浏览更多
zr20050503  LV2 6月27日
李龙生 1月31日
暂无贡献等级
ClydeSon  LV5 2023年12月27日
1112WHQ  LV7 2023年11月3日
ggl163163eel  LV2 2023年10月19日
huangzy  LV12 2023年6月11日
小安同学  LV7 2023年5月11日
XVXIAOPING  LV1 2022年12月21日
522881297  LV1 2022年12月19日
tree1112666  LV1 2022年8月19日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友