| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 734 人关注过本帖
标题:制作方块出了问题
取消只看楼主 加入收藏
h19891338
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2008-5-11
收藏
 问题点数:0 回复次数:0 
制作方块出了问题
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace tetris
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private bool[,] struArr = new bool[5, 5];
        Color blockColor = Color.Red;
        private void label1_Paint(object sender, PaintEventArgs e)
        {
            Graphics gp = e.Graphics;
            Pen p = new Pen(Color.White);
            for (int i = 0; i < 155; i = i + 31)//0 not 1
            {
                gp.DrawLine(p, 1, i, 155, i);
            }
            for (int i = 0; i < 155; i = i + 31)
            {
                gp.DrawLine(p, i, 1, i, 155);
            }
        }

        private void label1_MouseClick(object sender, MouseEventArgs e)
        {
            if (e.Button != MouseButtons.Left)
            
                return;
            
            int xPos, yPos;
            xPos = e.X / 31;
            yPos = e.Y / 31;
            struArr[xPos, yPos] = !struArr[xPos, yPos];

            bool b = struArr[xPos, yPos];
            Graphics gp = label1.CreateGraphics();
            SolidBrush s = new SolidBrush(b ? blockColor : Color.Black);
            gp.FillRectangle(s, 31 * xPos + 1, 31 * yPos + 1, 30, 30);
            gp.Dispose();
        }
    }
}                                                                                                                当你移动鼠标时
      回自动画黑线
  不知哪儿错了
如附件所示

QQ截图未命名.rar (642 Bytes)
搜索更多相关主题的帖子: using 方块 System public private 
2008-05-13 19:54
快速回复:制作方块出了问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.012796 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved