C#程序龟兔赛跑案例详解.docx_第1页
C#程序龟兔赛跑案例详解.docx_第2页
C#程序龟兔赛跑案例详解.docx_第3页
C#程序龟兔赛跑案例详解.docx_第4页
C#程序龟兔赛跑案例详解.docx_第5页
已阅读5页,还剩2页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

首先要准备好龟兔赛跑的图片:如下图:龟正1 兔正1龟正2 兔正2龟正3 兔正3龟正4 兔正4龟反1 兔反1 龟反2 兔反2龟反3 兔反3龟反4 兔反4背景窗体设计如下:需要一个timer控件,控制事件,四个imagelist控件用来存放兔正,兔反,龟正,龟反的图片,需要一个picturebox控件用来放置背景并画图,需要两个button控件Timer控件的属性值设置如图:Imagelist控件属性如图,仅以龟正举例: 其他几个imagelist控件设置与其相同。 事件:picturebox控件的paint事件 Button“开始”控件 Button“停止事件”代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Drawing.Imaging;namespace 龟兔赛跑 public partial class Form1 : Form private bool m_bCon; private bool m_bStart; int countT = 0; private int tuf = 0; int countG = 0; int guif = 0; int tuZ = 0; int guiZ = 0; public Form1() InitializeComponent(); m_bCon = false; m_bStart = false; private void pictureBox1_Paint(object sender, PaintEventArgs e) ImageAttributes ib = new ImageAttributes(); ib.SetColorKey(Color.White, Color.White); /兔子 if (m_bStart) countT+; tuZ+; if (4 = countT) countT = 0; if (tuZ * 20 = 0) e.Graphics.DrawImage(imageList3.ImagescountT, new Rectangle(660 - (tuf * 20), 320, 100, 100), 0, 0, 100, 100, GraphicsUnit.Pixel, ib); Console.WriteLine(countT + tuf * 20); else tuZ = 0; e.Graphics.DrawImage(imageList2.ImagescountT, new Rectangle(tuZ * 20), 320, 100, 100), 0, 0, 100, 100, GraphicsUnit.Pixel, ib); tuf = 0; else e.Graphics.DrawImage(imageList2.Images0, new Rectangle(0, 320, 100, 100), 0, 0, 100, 100, GraphicsUnit.Pixel, ib); /乌龟 if (m_bStart) countG+; guiZ+; if (4 = countG) countG = 0; if (guiZ * 10 = 0) e.Graphics.DrawImage(imageList4.ImagescountG, new Rectangle(660 - (guif * 10), 250, 100, 100), 0, 0, 100, 100, GraphicsUnit.Pixel, ib); Console.WriteLine(tuf + tuf * 20); else guiZ = 0; e.Graphics.DrawImage(imageList1.ImagescountG, new Rectangle(guiZ * 10), 250, 100, 100), 0, 0, 100, 100, GraphicsUnit.Pixel, ib); guif = 0; else e.Graphics.DrawImage(imageList1.Images0, new Rectangle(0, 250, 100, 100), 0, 0, 100, 100, GraphicsUnit.Pixel, ib); private void button1_Click(object sender, EventArgs e) /Timer t = new Timer(); /t.Enabled = true; m_bStart = true; timer1.Enabled = true; private void timer1_Tick(object sender, EventArgs e) if (m_bCon) m_bCon = false; else m_bCon = true; pictureBox1.Refresh(); private void pictureBo

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论