• 大小: 2.27MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 语言: Java
  • 标签: 拼图  java  

资源简介

一款很不错的java小程序 还有计时功能

资源截图

代码片段和文件信息

/*
 * To change this template choose Tools | Templates
 * and open the template in the editor.
 */

package my.pintu;

import java.awt.Color;
import javax.swing.Icon;
import javax.swing.JButton;

/**
 *
 * @author Administrator
 */
public class Cell extends JButton{
    public   int nwidth=300/(MyCanvas.gradeID+2);//每块拼图的长或宽像素值
    public Cell(Icon icon){//实际为ICON
super(icon);
this.setSize(nwidthnwidth);
        
     }

    //方格的移动
    public void move(int direction){
if(direction==1){//向上
    this.setLocation(this.getBounds().xthis.getBounds().y-nwidth);
}else if(direction==2){//向下
    this.setLocation(this.getBounds().xthis.getBounds().y+nwidth);
}else if(direction==3){//向左
    this.setLocation(this.getBounds().x-nwidththis.getBounds().y);
}else{//向右
    this.setLocation(

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       3710  2010-06-14 16:14  PinTu\build.xml

     文件         85  2010-06-14 16:14  PinTu\manifest.mf

     文件        912  2010-06-14 19:03  PinTu\src\my\pintu\Cell.java

     文件       6987  2010-06-14 18:11  PinTu\src\my\pintu\MainJframe.form

     文件       7585  2010-06-14 18:11  PinTu\src\my\pintu\MainJframe.java

     文件       1406  2010-06-14 19:04  PinTu\src\my\pintu\MyCanvas.form

     文件       6505  2010-06-14 19:04  PinTu\src\my\pintu\MyCanvas.java

     文件      72395  2008-06-25 11:19  PinTu\pictrue3\pic_1.jpg

     文件      16846  2008-06-25 10:58  PinTu\pictrue3\pic_1_1.jpg

     文件      15088  2008-06-25 11:08  PinTu\pictrue3\pic_1_10.jpg

     文件      15162  2008-06-25 11:09  PinTu\pictrue3\pic_1_11.jpg

     文件      15094  2008-06-25 11:10  PinTu\pictrue3\pic_1_12.jpg

     文件      17436  2008-06-25 11:10  PinTu\pictrue3\pic_1_13.jpg

     文件      16313  2008-06-25 11:11  PinTu\pictrue3\pic_1_14.jpg

     文件      15771  2008-06-25 11:11  PinTu\pictrue3\pic_1_15.jpg

     文件      16653  2008-06-25 11:15  PinTu\pictrue3\pic_1_16.jpg

     文件      16434  2008-06-25 11:15  PinTu\pictrue3\pic_1_17.jpg

     文件      17200  2008-06-25 11:16  PinTu\pictrue3\pic_1_18.jpg

     文件      15341  2008-06-25 11:16  PinTu\pictrue3\pic_1_19.jpg

     文件      15369  2008-06-25 11:00  PinTu\pictrue3\pic_1_2.jpg

     文件      15647  2008-06-25 11:17  PinTu\pictrue3\pic_1_20.jpg

     文件      17916  2008-06-25 11:17  PinTu\pictrue3\pic_1_21.jpg

     文件      16292  2008-06-25 11:18  PinTu\pictrue3\pic_1_22.jpg

     文件      15549  2008-06-25 11:18  PinTu\pictrue3\pic_1_23.jpg

     文件      15204  2008-06-25 11:19  PinTu\pictrue3\pic_1_24.jpg

     文件      14124  2008-06-25 11:02  PinTu\pictrue3\pic_1_3.jpg

     文件      14985  2008-06-25 11:03  PinTu\pictrue3\pic_1_4.jpg

     文件      14332  2008-06-25 11:04  PinTu\pictrue3\pic_1_5.jpg

     文件      15697  2008-06-25 11:06  PinTu\pictrue3\pic_1_6.jpg

     文件      16178  2008-06-25 11:07  PinTu\pictrue3\pic_1_7.jpg

............此处省略261个文件信息

评论

共有 条评论