程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 自動處理過長字符串顯示的Web控件

自動處理過長字符串顯示的Web控件

編輯:.NET實例教程

我們很多時候需要在一行上顯示一段說明文字,而由於Web頁面寬度的不確定性,我們任意調節其寬度後,常常搞得文字撐出頁面或者折成好多行。通過使用CSS,我們可以限制為一行的寬度,並使多余的字符隱藏。為了方便,做成一個小Web控件來使用。
    using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;

namespace cnblogs.birdshome.WebControls
{
    /**//// <summary>
    /// Summary description for AutoLabel.
    /// </summary>
    [DefaultProperty("Text"), 
        ToolboxData("<{0}:AutoLabel runat=server></{0}:AutoLabel>")]
    public class AutoLabel : System.Web.UI.WebControls.Label
    {
        protected override void CreateChildControls()
        {
            base.CreateChildControls ();
            this.Width = Unit.Percentage(100);
            this.Attributes["onmouSEOver"] = 
                 "if ( this.clIEntWidth < this.scrollWidth ) this.title = this.innerText; else this.title = '';";
            this.Attributes.CSSStyle["white-space"] = "nowrap";
            this.Attributes.CSSStyle["overflow"] = "hidden";
            this.Attributes.CSSStyle["text-overflow"] = "ellipsis";
        }
    }
}
    AutoLabel繼承至Label控件,默認寬度為"100%",當把AutoLabel放入容器類元素中後,其內容的寬度受容器大小自動調整。並且當AutoLabel出現"..."號後,鼠標放在上面,其ToolTip會自動顯示器完整內容。 如下圖:
  AutoLabel.gif


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved