嗨,我尝试GridView
使用下面显示的代码从后面的代码中更改我的所有垂直和水平行,但这似乎没有任何效果。
任何人都可以提供背后代码的解决方案吗?
foreach (GridViewRow row in gvCurrentStageCircsPSTN.Rows)
{
foreach (TableCell cell in row.Cells)
{
cell.Width = 150;
cell.Height = 20;
cell.Attributes.CssStyle["text-align"] = "center";
}
}