求C#.net做扫雷的代码

求C#.net做扫雷的代码,小弟初来乍到才学2个月,最好是有思路的... 求C#.net做扫雷的代码,小弟初来乍到才学2个月,最好是有思路的 展开
 我来答
熊猫小昊
2011-12-05 · TA获得超过135个赞
知道答主
回答量:103
采纳率:0%
帮助的人:75.7万
展开全部
我们实训正在做 你要今天做好了 晚点发你代码
追问
好啊,最好是能把源文件打包发给我  471998824@qq.com我邮箱
追答
我现在正在做 一步一步发给你吧 你自己做下界面
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication5
{
public partial class find : Form
{
private const int xCount = 5;
private const int yCount = 4;//定义一个横向竖线排数 (第一步)
public find()
{
InitializeComponent();
}

private void 扫雷_Load(object sender, EventArgs e)
{
SetButtons();
}

private void groupBox1_Enter(object sender, EventArgs e)
{

}
//加载雷区所有按钮
private void SetButtons()
{
Button btn = null;
int xlength = gbBooms.Location.X + 3;
int ylength = gbBooms.Location.Y + 3;
for (int i = 0; i < xCount; i++)
{
for (int j = 0; j < yCount; j++)
{
btn = new Button();
btn.Location = new Point(xlength, ylength);
btn.Size = new Size(50, 50);
gbBooms.Controls.Add(btn);//按钮位置
}
}
}
}
}
我现在还在写 等会写完了把全部给你
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式