我有GridView
并使用DataSet
到Bind
。 Gridview
Height
设置为autoHeight;
假设我在GridView
中有3行,在绑定后我想获取每行的行高。
我知道我可以通过
动态设置RowHeight
GridView1.RowStyle.Height = 40;
但我想要像我这样的事情
int height=GridView1.Rows[0].Height;
我可以使用for
或任何.....
答案 0 :(得分:0)
如果您不想使用foreach
循环,则可以使用RowDataBound
事件来查找每行的高度。
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack) {
ViewState["rowHeightList"] = new List<decimal>();
}
}
if (e.Row.RowType == DataControlRowType.DataRow) {
decimal currentRowHeight = Convert.ToDecimal(e.Row.Height);
List<decimal> rowHeightList = (List<decimal>)ViewState["rowHeightList"];
rowHeightList.Add(currentRowHeight);
ViewState["rowHeightList"] = rowHeightList;
}