Проблема в заполнение Button числами , испробовал варианты что были в сети .
private void StartToolStripMenuItem_Click(object sender, EventArgs e)
{
Button[,] S = new Button[20, 20];
for (int i = 0; i < 15; ++i)
for (int j = 0; j < 15; ++j)
{
S[i, j] = new Button();
S[i, j].Location = new Point(i * 40 + 350, j * 40 + 50);
S[i, j].Size = new Size(40, 40);
S[i, j].MouseClick += new MouseEventHandler(S_MouseClick);
Controls.Add(S[i, j]);
}
}
void S_MouseClick(object sender, MouseEventArgs e)
{
int i = (sender as Button).Left / 40;
int j = ((sender as Button).Top - 30) / 40;
}