怎样设置gridview的行距?
for(inti=0;i<e.Row.Cells.Count;i++){e.Row.Cells[i].Attributes.Add("style","white-spac...
for (int i = 0; i < e.Row.Cells.Count; i++)
{
e.Row.Cells[i].Attributes.Add("style", "white-space: nowrap;");
e.Row.Height = Unit.Pixel(16);
}
这个我第一次用可以,可新建一个实例后再用就没效果了! 展开
{
e.Row.Cells[i].Attributes.Add("style", "white-space: nowrap;");
e.Row.Height = Unit.Pixel(16);
}
这个我第一次用可以,可新建一个实例后再用就没效果了! 展开
3个回答
展开全部
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//下面的代码可以写在GridView1_RowCreated中
e.Row.Attributes.Add("style", "height:50px;");
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//下面的代码可以写在GridView1_RowCreated中
e.Row.Attributes.Add("style", "height:50px;");
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在GridView中有<ItemStyle Height="25px"/>指定Height的值就行了,在你新建实例的时候最好也指定一下这个值就行了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把ItemStyle Height清空
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询