c# datagridview控件如何修改行高
我试过了this.dataGridView1.RowTemplate.Height=30;和this.dataGridView1.Rows[0].MinimumHeigh...
我试过了this.dataGridView1.RowTemplate.Height = 30;和
this.dataGridView1.Rows[0].MinimumHeight = 30;两个都是不行,求高手解答!!
dataGridView1.Rows[0].Height这个试过了不行!!
我做的是C/S框架的,不涉及到aspx页面,求高手解决 展开
this.dataGridView1.Rows[0].MinimumHeight = 30;两个都是不行,求高手解答!!
dataGridView1.Rows[0].Height这个试过了不行!!
我做的是C/S框架的,不涉及到aspx页面,求高手解决 展开
7个回答
展开全部
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
for (int i = 0; i < e.Row.Cells.Count; i++)
{
e.Row.Cells[i].Wrap = false;
e.Row.Cells[i].Height = 20;
绑定时调整高度。
{
for (int i = 0; i < e.Row.Cells.Count; i++)
{
e.Row.Cells[i].Wrap = false;
e.Row.Cells[i].Height = 20;
绑定时调整高度。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
具体信息,可以参考这篇文章:
http://apps.hi.baidu.com/share/detail/6957441
http://apps.hi.baidu.com/share/detail/6957441
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
dataGridView1.Rows[0].Height
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询