我們很多時候需要在一行上顯示一段說明文字,而由於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會自動顯示器完整內容。 如下圖: