Exemplo n.º 1
0
 public static void AddControlsToRows(
     this TableLayoutPanel table, IReadOnlyList <Control> controls, int column, int rowFrom,
     SizeType rowSizeType, int rowSize, int rowSpan = 1)
 {
     table.AddRows(controls.Count * rowSpan, rowSizeType, rowSize);
     table.AddControls(controls, column, rowFrom, rowSpan);
 }