1.關閉容器
Control類有Controls集合屬性,即繼承Control類的控件都是一個容器控件,asp.net控件內置的有PlaceHolder控件,其只繼承自Control類,什麼也沒做。但所有控件都是繼承自Control類的。如一個label控件,照樣可以當容器使用.
label1.Controls.add(control)
有些控件則不需要這個功能,如Literal控件,只輸出純文字,不允許添加子控件
很簡單,重寫CreateControlCollection方法,返回EmptyControlCollection空集合
protected override ControlCollection CreateControlCollection()
{
return new EmptyControlCollection(this);
}
2.禁用屬性
如SqlDataSourceControl控件,其繼承自DataSourceControl,DataSourceControl類則繼承自Control類,DataSourceControl 不需要呈現東西,自然不需要樣式,所以像SkinID,EnableTheming等屬性則不需要使用。同時也可以用new關鍵字和一些元數據禁用掉像WebControl類的一些公共屬性。有時候你確實不需要這些東西,或者是將這些屬性給子標簽用也可以。
/**//// <exclude/>
/// <excludetoc/>
[Bindable(false), Browsable(false), EditorBrowsable(EditorBrowsableState.Never)]
new public System.Drawing.Color BorderColor
{
get
{
return new System.Drawing.Color();
}
}
總結:有時候繼承下來的並不是你所需要的,所以靈活的重寫基類的方法和屬性是非常有必要的,而且有時候還必須這麼做