TableCell cell=new TableCell();
TableCell priceCell=new TableCell();
cell.Text=modelName;
cell.Width=100;
cell.Height=50;
cell.BorderWidth=1; priceCell.Text=executeCost;
priceCell.Width=100;
priceCell.Height=50;
priceCell.BorderWidth=1;
row3.Cells.Add(cell);
row3.Cells.Add(priceCell);
我本来想在一行里面加两个单元格 结果运行后,出来两个单元格(每个和行的长度一样)放在一起
这怎么回事啊 任凭我怎么该长度都每用