private void LimpiarDatos() { TxtPath.Clear(); TxtPin.Clear(); TxtInfoLlaveCriptografica.Clear(); LblDragAndDrop.Visible = true; LblTiempoTranscurrido.Text = ""; TxtValorInicial.Clear(); TxtValorFinal.Clear(); }
private void Display(string[,] m, int rows, int cols) { TxtPath.Clear(); TxtPath.Text = "Original Grid" + Environment.NewLine; TxtPath.Text += Environment.NewLine; for (int r = 1; r <= rows; r++) { for (int c = 1; c <= cols; c++) { TxtPath.Text += Convert.ToString(m[r, c]); } TxtPath.Text += Environment.NewLine; } TxtPath.Text += Environment.NewLine; }