示例#1
0
 private void textResultsCellsRectangelNaM(TextBox box)
 {
     //box.Text += "Номер итерации - " + cellsRectangelNaM.GetIterationNumber().ToString();
     //box.Text += Environment.NewLine;
     box.Text += "Количество ячеек - " + (cells.GetColumnsNumber() * cells.GetRowsNumber()).ToString();
     box.Text += Environment.NewLine;
     box.Text += "Часть объёма, занимаемая ячеками - " + cells.GetCellsV().ToString();
     box.Text += Environment.NewLine;
     box.Text += "ФАКТИЧЕСКАЯ часть объёма, занимаемая ячеками - " + cells.GetVCellsFactical().ToString();
     box.Text += Environment.NewLine;
     box.Text += "K - " + cells.GetK().ToString();
     box.Text += Environment.NewLine;
     box.Text += "Ширина 1 ячейки - " + cells.GetCellsWidth().ToString();
     box.Text += Environment.NewLine;
     box.Text += "Длинна 1 ячейки - " + cells.GetCellsLenght().ToString();
     box.Text += Environment.NewLine;
     box.Text += "Высота 1 ячейки - " + cells.GetCellsHeight().ToString();
     box.Text += Environment.NewLine;
     box.Text += Environment.NewLine;
 }