mylabel.cs
来自「东软内部材料(四)asp等相关的教学案例 」· CS 代码 · 共 36 行
CS
36 行
using System;
using System.Web;
using System.Drawing;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WroxControls
{
public class MyLabel : WebControl
{
string _text;
public MyLabel() : base ("H1")
{
}
public string Text
{
get{ return _text; }
set{ _text = value; }
}
protected override void OnInit(EventArgs e)
{
if ( _text == null )
_text = "Here is some default text";
}
protected override void RenderContents(HtmlTextWriter writer)
{
writer.Write( _text );
}
}
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?