WebBrowsableAttribute 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 WebBrowsableAttribute 类的新实例。
重载
WebBrowsableAttribute() |
初始化 WebBrowsableAttribute 类的新实例,其 Browsable 属性设置为 |
WebBrowsableAttribute(Boolean) |
使用 WebBrowsableAttribute 属性的指定值初始化 Browsable 类的新实例。 |
WebBrowsableAttribute()
初始化 WebBrowsableAttribute 类的新实例,其 Browsable 属性设置为 true
。
public:
WebBrowsableAttribute();
public WebBrowsableAttribute ();
Public Sub New ()
示例
下面的代码示例演示如何使用 WebBrowsableAttribute 特性将 Web 部件控件上的属性标记为可在 控件中 PropertyGridEditorPart 显示。 通过 构造函数将 属性设置为 browsable WebBrowsableAttribute 。 此示例是类概述中较大示例的一 PropertyGridEditorPart 部分。
[Personalizable(), WebBrowsable(), WebDisplayName("Job Type"),
WebDescription("Select the category that corresponds to your job.")]
public JobTypeName UserJobType
{
get
{
object o = ViewState["UserJobType"];
if (o != null)
return (JobTypeName)o;
else
return _userJobType;
}
set { _userJobType = (JobTypeName)value; }
}
<Personalizable(), WebBrowsable(), WebDisplayName("Job Type"), _
WebDescription("Select the category that corresponds to your job.")> _
Public Property UserJobType() As JobTypeName
Get
Dim o As Object = ViewState("UserJobType")
If Not (o Is Nothing) Then
Return CType(o, JobTypeName)
Else
Return _userJobType
End If
End Get
Set(ByVal value As JobTypeName)
_userJobType = CType(value, JobTypeName)
End Set
End Property
注解
通过 WebBrowsableAttribute C# 或 <WebBrowsable()>
Visual Basic 中的属性声明[WebBrowsable()]
应用特性时WebBrowsable
,使用构造函数。
适用于
WebBrowsableAttribute(Boolean)
使用 WebBrowsableAttribute 属性的指定值初始化 Browsable 类的新实例。
public:
WebBrowsableAttribute(bool browsable);
public WebBrowsableAttribute (bool browsable);
new System.Web.UI.WebControls.WebParts.WebBrowsableAttribute : bool -> System.Web.UI.WebControls.WebParts.WebBrowsableAttribute
Public Sub New (browsable As Boolean)
参数
- browsable
- Boolean
一个布尔值,指示属性是否应显示在 PropertyGridEditorPart 中。
注解
通过 WebBrowsableAttribute 具有布尔值的属性声明应用特性时 WebBrowsable
,使用构造函数。 若要防止属性显示在控件中PropertyGridEditorPart,可以使用 C# 中的 属性或 <WebBrowsable(false)>
Visual Basic 中的 属性[WebBrowsable(false)]
进行标记。