1个回答
展开全部
我们实训正在做 你要今天做好了 晚点发你代码
追问
好啊,最好是能把源文件打包发给我 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);//按钮位置
}
}
}
}
}
我现在还在写 等会写完了把全部给你
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询