• 大小: 18.95MB
    文件类型: .7z
    金币: 2
    下载: 1 次
    发布日期: 2023-06-15
  • 语言: C#
  • 标签: C#  

资源简介

里面包括俄罗斯方块,停车场,贪吃蛇,,,等数十种小游戏,非常值得一看!!!

资源截图

代码片段和文件信息

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

namespace Parking
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private int[] a;                 //车位之间的通道信息
        private int[] c = new int[7];     //车位中的车辆颜色代号
        private int[] d = new int[7];     //车位中的初始时车辆颜色代号
        private int order;                //用户当前玩的关号
        private int Total = 3;            //总关数
        ArrayList  trace=new ArrayList();
        Point p1 = new Point(68 275);
        Point p2 = new Point(68 125);
        Point p3 = new Point(218 35);
        Point p4 = new Point(368 125);
        Point p5 = new Point(368 275);
        Point p6 = new Point(218 355);
        Point[] p;

        private void Form1_Load(object sender EventArgs e)
        {
            a = new int[7 7];
            p = new Point[7] { new Point(0 0) p1 p2 p3 p4 p5 p6 };
            order = 1;                   //当前是第一关

        }

        private void pBox_Click(object sender EventArgs e)//事件处理方法
        {
            PictureBox pBox = (PictureBox)sender;
            int j=Convert.ToInt16(pBox.Name.Substring(pBox.Name.Length - 1 1));
            //计算所在车位
            int n=0;
            for (int i = 1; i <= 6; i++)
            {
                if (c[i] == j) n = i;
            }
            for (int m = 1; m <= 6; m++)
            {
                if (c[m] == 0)//找出空车位m
                {
                    if (a[m n] == 1 || a[n m] == 1)//如果车位m n之间有通道
                    {
                        pBox.Location = p[m];//汽车移到空车位m
                        c[m] = c[n]; c[n] = 0;
                    }
                    break; 
                }
            }
            if (success())
            {
                order++;
                //select_order(order);
                MessageBox.Show(“成功了“ “恭喜“);
                this.Text = “停车场游戏“;
                this.Invalidate(); 
                button1_Click(sender e);
            }
        }
        private void Draw_Road()//画出车位之间通道
        {
            Graphics g = this.CreateGraphics();
            SolidBrush b = new SolidBrush(Color.BlanchedAlmond);
            for (int i = 1; i <= 6; i++)
                for (int j = 1; j <= 6; j++)
                {
                    if (a[i j] == 1)//第i和j停车位有通道
                    {
                        g.DrawLine(new Pen(Color.Blue 14)
                            p[i].X + 40 p[i].Y + 15 p[j].X + 40 p[j].Y + 15);
                    }
                }
        }
        private void Draw_park()//画出停车位
        {
            Graphics g = this.CreateGraphics();
            SolidBrush b = new SolidBrush(Color.BlanchedAlmond);
            Rectangle r;
            r =

评论

共有 条评论