首页 > 其他 > 详细

GridView使用技巧

时间:2014-10-23 15:46:41      阅读:252      评论:0      收藏:0      [点我收藏+]
1、单元格超过部分省略号显示:

if (e.Row.RowType == DataControlRowType.DataRow)//数据行
{
    string Str = e.Row.Cells[1].Text; //第二列内容
    if (Str.Length > 45) //第二列内容大于20个
    {
        e.Row.Cells[1].Text = Str.Substring(0, 45) + "..."; //截取20个显示,其他用“...”号代替
        e.Row.Cells[1].ToolTip = Str;//鼠标放上去显示全部信息
    }
}

 

GridView使用技巧

原文:http://www.cnblogs.com/kedarui/p/4045672.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!