using System; using System.Drawing; using System.Windows.Forms; namespace Mine { public partial class Form1 : Form { private int CostTime; //所用时间 private int MineNum = 10; //雷的总数 private int MineWidth = 30; //雷方块的大小(宽度为30像素) private Button[,] Mines; p