資源簡介
大學(xué)課余時間借鑒網(wǎng)上一些掃雷游戲,做了一款自己風(fēng)格的掃雷游戲,希望和大家共同學(xué)習(xí);

代碼片段和文件信息
import?java.awt.event.*;
import?java.awt.*;
import?javax.swing.*;
class?Aboutframe?extends?Jframe?implements?MouseListener{
private?JPanel?aboutPane;
private?JLabel?msg;
private?JLabel?msg1;
private?JLabel?msg2;
private?JButton?exit;
public?Aboutframe(String?strName)?{
super(strName);
setSize(180?170);
setDefaultCloseOperation(Jframe.EXIT_ON_CLOSE);
aboutPane?=?new?JPanel();
msg?=?new?JLabel(“JMine?written?by?Jerry?Shen.“);
msg1?=?new?JLabel(“?????????Enjoy!???????????“);
msg2?=?new?JLabel(“Vision?1.0????????????????“);
exit?=?new?JButton(“Exit“);
exit.addMouseListener(this);
aboutPane.add(msg);
aboutPane.add(msg1);
aboutPane.add(msg2);
aboutPane.add(exit);
setContentPane(aboutPane);
setLocation(250220);
}
//?the?event?handle?to?deal?with?the?mouse?click
public?void?mouseClicked(MouseEvent?e)?{
this.setVisible(false);
}
public?void?mousePressed(MouseEvent?e)?{
//System.out.println(“Jerry?Press“);
}
public?void?mouseReleased(MouseEvent?e)?{
//System.out.println(“Jerry?Release“);
}
public?void?mouseExited(MouseEvent?e)?{
//System.out.println(“Jerry?Exited“);
}
public?void?mouseEntered(MouseEvent?e)?{
//System.out.println(“Jerry?Entered“);
}
public?static?void?main(String[]?args)?{
Aboutframe?about?=?new?Aboutframe(“Win“);
about.show();
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????825??2002-11-15?20:45??java掃雷程序\JMine\0.gif
?????文件????????845??2002-11-15?20:54??java掃雷程序\JMine\1.gif
?????文件????????848??2002-11-15?20:54??java掃雷程序\JMine\2.gif
?????文件????????847??2002-11-15?20:54??java掃雷程序\JMine\3.gif
?????文件????????852??2002-11-15?20:54??java掃雷程序\JMine\4.gif
?????文件????????848??2002-11-15?20:54??java掃雷程序\JMine\5.gif
?????文件????????853??2002-11-15?20:53??java掃雷程序\JMine\6.gif
?????文件????????848??2002-11-15?20:53??java掃雷程序\JMine\7.gif
?????文件????????853??2002-11-15?20:53??java掃雷程序\JMine\8.gif
?????文件???????1610??2007-07-18?09:31??java掃雷程序\JMine\Aboutfr
?????文件???????1396??2002-11-15?20:31??java掃雷程序\JMine\Aboutfr
?????文件????????825??2002-11-15?20:52??java掃雷程序\JMine\blank.gif
?????文件????????113??2002-11-15?20:51??java掃雷程序\JMine\blank1.gif
?????文件????????860??2002-11-15?20:51??java掃雷程序\JMine\bomb.gif
?????文件????????883??2002-11-01?22:17??java掃雷程序\JMine\bomd.gif
?????文件????????885??2002-11-01?22:16??java掃雷程序\JMine\c0.gif
?????文件????????884??2002-11-01?22:15??java掃雷程序\JMine\c1.gif
?????文件????????889??2002-11-01?22:17??java掃雷程序\JMine\c2.gif
?????文件????????885??2002-11-15?21:13??java掃雷程序\JMine\c3.gif
?????文件????????889??2002-11-01?22:17??java掃雷程序\JMine\c4.gif
?????文件????????885??2002-11-01?22:17??java掃雷程序\JMine\c5.gif
?????文件????????885??2002-11-01?22:17??java掃雷程序\JMine\c6.gif
?????文件????????885??2002-11-01?22:17??java掃雷程序\JMine\c7.gif
?????文件????????879??2002-11-01?22:17??java掃雷程序\JMine\c8.gif
?????文件????????887??2002-11-01?22:14??java掃雷程序\JMine\c9.gif
?????文件????????894??2002-11-15?20:49??java掃雷程序\JMine\flag.gif
?????文件???????1909??2007-07-18?09:31??java掃雷程序\JMine\JCounter.class
?????文件???????1932??2007-07-18?09:22??java掃雷程序\JMine\JCounter.java
?????文件???????8223??2007-07-18?09:31??java掃雷程序\JMine\JMine.class
?????文件??????11750??2007-07-18?09:24??java掃雷程序\JMine\JMine.java
............此處省略25個文件信息
- 上一篇:影院售票系統(tǒng)android版
- 下一篇:數(shù)字波形生成
評論
共有 條評論