自定義控件是ASP
本實例介紹如何在ASP
在Visual Studio
在應用程序Example_
internal class CheckBoxItem : ITemplate
{
// <summary>
// CheckBoxItem的構造函數
// </summary>
// <param name=
public CheckBoxItem(bool editable
{
name = Name;
readOnly = (editable==true)?false:true;
}
// <summary>
// 實例化CheckBox控件
// </summary>
// <param name=
void ITemplate
{
//創建CheckBox控件
CheckBox box = new CheckBox();
//設置控件的屬性和事件
box
box
box
box
container
}
// <summary>
//定義控件的事件CheckChanged
// </summary>
public event EventHandler CheckedChanged;
[
From:http://tw.wingwit.com/Article/program/net/201311/15044.html