public void generar(int m, int n) { texto = new myTextBox[m, n]; textoV = new myTextBox[m, n]; matriz1 = new int[m, n]; for (int i = 0; i < m; i++) { for (int j = 0; j < n; j++) { texto[i, j] = new myTextBox(); textoV[i, j] = new myTextBox(); texto[i, j].Location = new Point(posx, posy); texto[i, j].Size = new System.Drawing.Size(20, 20); texto[i, j].indiceX = i; texto[i, j].indiceY = j; texto[i, j].Text = "0"; groupBox1.Controls.Add(texto[i, j]); posx += 21; } posx = 1; posy += 21; } posx = 1; posy = 11; }
public void generarR(int m, int n) { resultado = new myTextBox[m, n]; for (int i = 0; i < m; i++) { for (int j = 0; j < n; j++) { resultado[i, j] = new myTextBox(); resultado[i, j].Location = new Point(posx, posy); resultado[i, j].Size = new System.Drawing.Size(20, 20); resultado[i, j].indiceX = i; resultado[i, j].indiceY = j; resultado[i, j].Text = matriz3[i, j].ToString(); resultado[i, j].Visible = true; groupBox3.Controls.Add(resultado[i, j]); posx += 21; } posx = 1; posy += 21; } posx = 1; posy = 11; }