java swing编写俄罗斯方块小游戏源代码下载_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java swing编写俄罗斯方块小游戏源代码下载

java swing编写俄罗斯方块小游戏源代码下载

 2014/8/12 12:37:56  springmvc_springdata  程序员俱乐部  我要评论(0)
  • 摘要:原文:javaswing编写俄罗斯方块小游戏源代码下载源代码下载地址:http://www.zuidaima.com/share/1550463301618688.htm小弟写的俄罗斯方块小游戏目前能正常运行忘各位指出不对的地方packagecom.zuidaima.russia.game.square;importjava.awt.event.ActionEvent;importjava.awt.event.ActionListener;importjavax.swing.*
  • 标签:Java 下载 代码 游戏 Swing

原文:java swing编写俄罗斯方块小游戏源代码下载?源代码下载地址:http://www.zuidaima.com/share/1550463301618688.htm

?

小弟写的俄罗斯方块小游戏 目前能正常运行 忘各位指出不对的地方

java swing编写俄罗斯方块小游戏源代码下载class="lazy img-rounded">

package com.zuidaima.russia.game.square;

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

import javax.swing.*;


/**
*@author www.zuidaima.com
**/
@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

	}

}

?标签:?swing?游戏?java?俄罗斯方块?下载话题:?SwingAWT开发?游戏开发

  • 相关文章
发表评论
用户名: 匿名