• 大小: 14.43MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-04
  • 语言: C#
  • 标签: C#  推箱子  游戏  源码  

资源简介

C#推箱子游戏 基于C# winform编写,内含截图,仅供参考

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace 推箱子
{
    public partial class Block : UserControl
    {
        public Block()
        {
            InitializeComponent();
        }
        private int _oldPic;

        public int OldPic1
        {
            get 
            {
                if (_oldPic == 3)
                    return 3;
                else
                    return 2;                
            }
            set { _oldPic = value; }
        }


        private void Block_Load(object sender EventArgs e)
        {
            this.Redraw();
        }

        public void Redraw()
        {
            //根据图片名字获取资源图片的对象
            object obj = Images.ResourceManager.Getobject(“_“ + this.Tag);
            //obj转化位图给背景图片属性
            this.BackgroundImage = (Bitmap)obj;
        }
    }
}

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

     文件      78083  2012-06-09 19:55  推箱子.jpg

     文件      49152  2011-08-17 22:41  推箱子\推箱子\bin\Debug\AxInterop.WMPLib.dll

     文件     339968  2011-08-17 22:49  推箱子\推箱子\bin\Debug\Interop.WMPLib.dll

     文件     273444  2011-08-17 22:41  推箱子\推箱子\bin\Debug\sound\SE103.WAV

     文件      40796  2011-08-17 22:41  推箱子\推箱子\bin\Debug\sound\SE108.WAV

     文件     516208  2011-08-17 22:41  推箱子\推箱子\bin\Debug\sound\SE355.WAV

     文件    4489216  2011-08-17 22:41  推箱子\推箱子\bin\Debug\sound\梦中的婚礼.mp3

     文件    3539499  2011-08-17 22:41  推箱子\推箱子\bin\Debug\ss 闪电部队在前进 闪电部队在前进.mp3

     文件     759808  2011-08-17 23:42  推箱子\推箱子\bin\Debug\推箱子.exe

     文件      83456  2011-08-17 23:42  推箱子\推箱子\bin\Debug\推箱子.pdb

     文件      14328  2011-08-17 23:42  推箱子\推箱子\bin\Debug\推箱子.vshost.exe

     文件        490  2009-06-11 05:14  推箱子\推箱子\bin\Debug\推箱子.vshost.exe.manifest

     文件    4489216  2011-08-17 22:41  推箱子\推箱子\bin\Debug\梦中的婚礼.mp3

     文件       1076  2011-08-17 22:41  推箱子\推箱子\Block.cs

     文件       1733  2011-08-17 22:41  推箱子\推箱子\Block.Designer.cs

     文件       6014  2011-08-17 22:41  推箱子\推箱子\Block.resx

     文件       3537  2011-08-17 22:41  推箱子\推箱子\GameFile.cs

     文件      14919  2011-08-17 23:41  推箱子\推箱子\Images.Designer.cs

     文件      17472  2011-08-17 23:41  推箱子\推箱子\Images.resx

     文件      29103  2011-08-17 22:41  推箱子\推箱子\Levels.cs

     文件       3549  2011-08-17 22:41  推箱子\推箱子\MianForm.cs

     文件       9622  2011-08-17 22:41  推箱子\推箱子\MianForm.Designer.cs

     文件      13232  2011-08-17 22:41  推箱子\推箱子\MianForm.resx

     文件        766  2011-08-17 22:41  推箱子\推箱子\Music.cs

     文件      13073  2011-08-17 23:42  推箱子\推箱子\MyGame.cs

     文件      18303  2011-08-17 23:42  推箱子\推箱子\MyGame.Designer.cs

     文件     155832  2011-08-17 23:42  推箱子\推箱子\MyGame.resx

     文件      49152  2011-08-17 22:41  推箱子\推箱子\obj\Debug\AxInterop.WMPLib.dll

     文件     339968  2011-08-17 22:49  推箱子\推箱子\obj\Debug\Interop.WMPLib.dll

     文件       9728  2011-08-17 23:41  推箱子\推箱子\obj\Debug\TempPE\Images.Designer.cs.dll

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

评论

共有 条评论