Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在表格单元格中添加新表格......
Table tblTasks = new Table(); TableRow tr = new TableRow(); tr.Cells.Add(new Table());
类似的东西
使用您的表格创建TableCell并添加该单元格,如下所示
TableCell
var cell =new TableCell(); cell.Controls.Add(new Table()); tr.Cells.Add(cell);