模板行是一行
int i_RowIndex = ((GridViewRow)((Button)e.CommandSource).NamingContainer).RowIndex; //取当前行的行号
if (lb==null)
{
return;
}
本文介绍了一种使用 C# 在 GridView 控件中获取指定行索引及 Label 控件值的方法。通过 Button 的 CommandSource 属性定位到当前行,并进一步获取该行的 Label 控件的值。若未找到 Label,则返回。
模板行是一行
int i_RowIndex = ((GridViewRow)((Button)e.CommandSource).NamingContainer).RowIndex; //取当前行的行号
return;
}

被折叠的 条评论
为什么被折叠?