• 大小: 13.96M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 飞机大战  代码  飞机  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using 打飞机.Properties;
namespace 打飞机
{
    class BackGround : Gameobject
    {
        //首先应该将背景图片导入 因为我们需要将背景图片绘制到窗体上
        private static Image imgBG = Resources.background;
        //写构造函数去调用父类Gameobject的构造函数
        public BackGround(int x int y int speed)
            : base(x y imgBG.Width imgBG.Height speed 0 Direction.Down)
        { }

        public override void Draw(Graphics g)
        {
            this.Y += this.Speed;
            if (this.Y == 0)
            {
                this.Y = -850;
            }
            //坐标改变完成后 ,将背景图像不停的绘制到我们窗体中
            g.DrawImage(imgBG this.X this.Y);
        }
   

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

     文件        187  2014-12-25 20:07  飞机大战公开课第一天\打飞机\App.config

     文件        956  2014-12-25 20:36  飞机大战公开课第一天\打飞机\BackGround.cs

     文件    4508160  2014-12-25 22:04  飞机大战公开课第一天\打飞机\bin\Debug\打飞机.exe

     文件        187  2014-12-25 20:07  飞机大战公开课第一天\打飞机\bin\Debug\打飞机.exe.config

     文件      77312  2014-12-25 22:04  飞机大战公开课第一天\打飞机\bin\Debug\打飞机.pdb

     文件      23168  2014-12-25 22:04  飞机大战公开课第一天\打飞机\bin\Debug\打飞机.vshost.exe

     文件        187  2014-12-25 20:07  飞机大战公开课第一天\打飞机\bin\Debug\打飞机.vshost.exe.config

     文件        490  2013-06-18 20:28  飞机大战公开课第一天\打飞机\bin\Debug\打飞机.vshost.exe.manifest

     文件       2169  2014-12-25 22:02  飞机大战公开课第一天\打飞机\Form1.cs

     文件       2302  2014-12-25 22:00  飞机大战公开课第一天\打飞机\Form1.Designer.cs

     文件       6012  2014-12-25 22:00  飞机大战公开课第一天\打飞机\Form1.resx

     文件       3505  2014-12-25 20:26  飞机大战公开课第一天\打飞机\Gameobject.cs

     文件        432  2014-12-25 21:56  飞机大战公开课第一天\打飞机\HeroZiDan.cs

     文件        865  2014-12-25 20:07  飞机大战公开课第一天\打飞机\obj\Debug\DesignTimeResolveAssemblyReferences.cache

     文件      14226  2014-12-25 21:54  飞机大战公开课第一天\打飞机\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件          0  2014-12-25 20:07  飞机大战公开课第一天\打飞机\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs

     文件          0  2014-12-25 20:07  飞机大战公开课第一天\打飞机\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs

     文件          0  2014-12-25 20:07  飞机大战公开课第一天\打飞机\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs

     文件      13824  2014-12-25 20:29  飞机大战公开课第一天\打飞机\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll

     文件        951  2014-12-25 22:04  飞机大战公开课第一天\打飞机\obj\Debug\打飞机.csproj.FileListAbsolute.txt

     文件       4164  2014-12-25 22:02  飞机大战公开课第一天\打飞机\obj\Debug\打飞机.csproj.GenerateResource.Cache

     文件       2211  2014-12-25 20:49  飞机大战公开课第一天\打飞机\obj\Debug\打飞机.csprojResolveAssemblyReference.cache

     文件    4508160  2014-12-25 22:04  飞机大战公开课第一天\打飞机\obj\Debug\打飞机.exe

     文件        180  2014-12-25 22:02  飞机大战公开课第一天\打飞机\obj\Debug\打飞机.Form1.resources

     文件      77312  2014-12-25 22:04  飞机大战公开课第一天\打飞机\obj\Debug\打飞机.pdb

     文件    4486284  2014-12-25 21:56  飞机大战公开课第一天\打飞机\obj\Debug\打飞机.Properties.Resources.resources

     文件        759  2014-12-25 21:29  飞机大战公开课第一天\打飞机\PlaneFather.cs

     文件       1235  2014-12-25 22:01  飞机大战公开课第一天\打飞机\PlaneHero.cs

     文件        521  2014-12-25 20:07  飞机大战公开课第一天\打飞机\Program.cs

     文件       1342  2014-12-25 20:07  飞机大战公开课第一天\打飞机\Properties\AssemblyInfo.cs

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

评论

共有 条评论