procedure TDefault.Button5_Click(sender: System.Object; e: System.EventArgs);
var
   a:Tablerow; //定义行
   b,c:TableCell; //定义列
begin
  a:=TableRow.Create;
   b:=TableCell.Create();
   b.Text:='Hello Word';
    c:=TableCell.Create;
   c.Text:='黄连茂';
   a.Cells.Add(b);
   a.Cells.Add(c);
   Table1.Rows.Add(a);
   Table1.Rows[0].Cells[0].Text:='不知道'; //如何动态改变Cell的值

end;

-------------------------------

DoubleCat

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-24
  • 2022-12-23
  • 2022-02-01
  • 2021-10-19
猜你喜欢
  • 2022-12-23
  • 2021-04-08
  • 2022-12-23
  • 2022-12-23
  • 2021-06-13
  • 2022-12-23
  • 2022-01-07
相关资源
相似解决方案