当前位置:主页 > 软件编程 > .NET代码 >

c# table 控件用法

时间:2021-01-29 09:31:06 | 栏目:.NET代码 | 点击:

复制代码 代码如下:

for (int i = 0; i < 10; i++)
{
TableRow tblrow = new TableRow();
for (int j = 0; j < 10; j++)
{
TableCell tblcell = new TableCell();
tblcell.Text = "单元格";
tblcell.BorderWidth = 1;
tblrow.Cells.Add(tblcell);
}
tbllist.Rows.Add(tblrow);
}

您可能感兴趣的文章:

相关文章