资源简介
java实现蜘蛛纸牌游戏,类似于windows里德蜘蛛纸牌游戏
代码片段和文件信息
//package CH05.源程序;
import javax.swing.*;
import java.awt.*;
/*
**“关于”窗口
*/
public class AboutDialog extends JDialog
{
JPanel jMainPane = new JPanel();
JTabbedPane jTabbedPane = new JTabbedPane();
private JPanel jPanel1 = new JPanel();
private JPanel jPanel2 = new JPanel();
private JTextArea jt1 = new JTextArea(“将电脑多次分发给你的牌按照相同的花色由大至小排列起来。直到桌面上的牌全都消失。“);
private JTextArea jt2 = new JTextArea(“该游戏中,纸牌的图片来自于Windows XP的纸牌游戏,图片权属于原作者所有!“);
/*
**构造函数
*/
public AboutDialog()
{
settitle(“蜘蛛牌“);
setSize(300200);
setResizable(false);
setDefaultCloseOperation (WindowConstants.DISPOSE_ON_CLOSE);
Container c = this.getContentPane();
jt1.setSize(260200);
jt2.setSize(260200);
jt1.setEditable(false);
jt2.setEditable(false);
jt1.setLineWrap(true);
jt2.setLineWrap(true);
jt1.setFont(new Font(“楷体_GB2312“ java.awt.Font.BOLD 13));
jt1.setForeground(Color.blue);
jt2.setFont(new Font(“楷体_GB2312“ java.awt.Font.BOLD 13));
jt2.setForeground(Color.black);
jPanel1.add(jt1);
jPanel2.add(jt2);
jTabbedPane.setSize(300200);
jTabbedPane.addTab(“游戏规则“ null jPanel1 null);
jTabbedPane.addTab(“声明“ null jPanel2 null);
jMainPane.add(jTabbedPane);
c.add(jMainPane);
pack();
this.setVisible(true);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1450 2011-07-23 12:41 蜘蛛纸牌\AboutDialog.java
文件 522 2002-10-31 03:02 蜘蛛纸牌\images\1-1.gif
文件 618 2002-11-03 05:51 蜘蛛纸牌\images\1-10.gif
文件 1093 2002-11-03 05:52 蜘蛛纸牌\images\1-11.gif
文件 1177 2002-11-03 05:53 蜘蛛纸牌\images\1-12.gif
文件 1077 2002-11-03 05:53 蜘蛛纸牌\images\1-13.gif
文件 474 2002-10-31 20:52 蜘蛛纸牌\images\1-2.gif
文件 432 2002-11-03 05:45 蜘蛛纸牌\images\1-3.gif
文件 463 2002-11-03 05:46 蜘蛛纸牌\images\1-4.gif
文件 478 2002-11-03 05:47 蜘蛛纸牌\images\1-5.gif
文件 508 2002-11-03 05:48 蜘蛛纸牌\images\1-6.gif
文件 526 2002-11-03 05:49 蜘蛛纸牌\images\1-7.gif
文件 562 2002-11-03 05:50 蜘蛛纸牌\images\1-8.gif
文件 581 2002-11-03 05:50 蜘蛛纸牌\images\1-9.gif
文件 410 2002-11-08 01:30 蜘蛛纸牌\images\2-1.gif
文件 661 2002-11-08 01:10 蜘蛛纸牌\images\2-10.gif
文件 1182 2002-11-08 01:29 蜘蛛纸牌\images\2-11.gif
文件 1226 2002-11-08 01:33 蜘蛛纸牌\images\2-12.gif
文件 1192 2002-11-08 01:29 蜘蛛纸牌\images\2-13.gif
文件 429 2002-11-08 01:27 蜘蛛纸牌\images\2-2.gif
文件 452 2002-11-08 00:55 蜘蛛纸牌\images\2-3.gif
文件 492 2002-11-08 01:45 蜘蛛纸牌\images\2-4.gif
文件 518 2002-11-08 00:53 蜘蛛纸牌\images\2-5.gif
文件 544 2002-11-08 01:24 蜘蛛纸牌\images\2-6.gif
文件 570 2002-11-08 00:57 蜘蛛纸牌\images\2-7.gif
文件 606 2002-11-08 01:46 蜘蛛纸牌\images\2-8.gif
文件 623 2002-11-08 01:24 蜘蛛纸牌\images\2-9.gif
文件 390 2002-11-08 00:54 蜘蛛纸牌\images\3-1.gif
文件 623 2002-11-08 01:23 蜘蛛纸牌\images\3-10.gif
文件 1167 2002-11-08 01:11 蜘蛛纸牌\images\3-11.gif
............此处省略36个文件信息
评论
共有 条评论