论坛交流
首页办公自动化| 网页制作| 平面设计| 动画制作| 数据库开发| 程序设计| 全部视频教程
应用视频: Windows | Word2007 | Excel2007 | PowerPoint2007 | Dreamweaver 8 | Fireworks 8 | Flash 8 | Photoshop cs | CorelDraw 12
编程视频: C语言视频教程 | HTML | Div+Css布局 | Javascript | Access数据库 | Asp | Sql Server数据库Asp.net  | Flash AS
当前位置 > 文字教程 > Asp.net教程
Tag:静态页面,treeview,gridview,repeater,dataset,sqldatareader,ado.net,上传,三层,ajax,xml,留言本,新闻发布,商城,注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,触发器,socket,form认证,登录,视频教程

[DataGird]如何截取过长的字符串

文章类别:Asp.net | 发表日期:2008-10-5 22:11:59

1.这段代码是处理过长字符串的主体;
void ItemDataBound(object sender, DataGridItemEventArgs e)
{
   // Get the string to be displayed
   string title = GetTheString();

   // Returns the updated text for the specified column
   string newText = AdjustTextForDisplay(title, 1, grid);
 
   // Set the text including the tooltip when necessary
   e.Item.Cells[1].Text = newText;
}

2.AdjustTextForDisplay(string,int,DataGrid)函数的功能是根据列的宽度,截取过长的字符串;
这里需要注意的是DataGrid的Font和Columns[colIndex].ItemStyle.Width属性必需有赋值。如果没有赋值的话,函数将会采用系统默认的值。如不加处理,函数会出异常。
string AdjustTextForDisplay(string text, int colIndex, DataGrid grid)
{
   // Calculate the dimensions of the text with the current font
   SizeF textSize = MeasureString(text, grid.Font);
 
   // Compare the size with the column's width
   int colWidth = (int) grid.Columns[colIndex].ItemStyle.Width.Value;
   if(textSize.Width > colWidth)
   {
      // Get the exceeding pixels
      int delta = (int) (textSize.Width - colWidth);
 
      // Calculate the average width of the characters (approx)
      int avgCharWidth = (int) (textSize.Width/text.Length);
 
      // Calculate the number of chars to trim to stay in the fixed width (approx)
      int chrToTrim = (int) (delta/avgCharWidth);
 
      // Get the proper substring + the ellipsis
      // Trim 2 more chars (approx) to make room for the ellipsis
      string rawText = text.Substring(0, text.Length-(chrToTrim+2)) + "";
 
      // Format to add a tooltip
      string fmt = "{1}";
      return String.Format(fmt, text, rawText);
   }
   return text;
}

 

视频教程列表
文章教程搜索
 
Asp.net推荐教程
Asp.net热门教程
看全部视频教程
购买方式/价格
购买视频教程: 咨询客服
tel:15972130058