Hi,
There's not such Data Repeater control in C# for Windows Forms application, you can use a TableLayoutPanel instead, calling its Control.Add() method in a for loop to add controls into it,
Code Snippet
(int j = 0; j < this.tableLayoutPanel1.RowCount; j++)
{
for (int k = 0; k < this.tableLayoutPanel1.ColumnCount; k++)
{
TextBox t = new TextBox();
this.tableLayoutPanel1.Controls.Add(t, k, j);
}
}
|