📄 htmlgenericcontrol.cs
字号:
using System;
namespace System.Web.UI.HtmlControls
{
/// <summary>
/// Summary description for HtmlGenericControl.
/// </summary>
//.custom instance void System.Web.UI.ConstructorNeedsTagAttribute::
public class HtmlGenericControl : HtmlContainerControl
{
public HtmlGenericControl()
{
// this = new System.Web.UI.HtmlControls.HtmlGenericControl("span");
}
public HtmlGenericControl(string tag) : base()
{
if (tag == null)
tag = System.String.Empty;
this._tagName = tag;
}
public string TagName
{
get
{
return this._tagName;
}
set
{
this._tagName = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -