WebDisplayNameAttribute 构造函数

定义

初始化 WebDisplayNameAttribute 类的新实例。

重载

WebDisplayNameAttribute()

初始化 WebDisplayNameAttribute 类的新实例,而不使用指定的名称。

WebDisplayNameAttribute(String)

用指定的显示名称初始化 WebDisplayNameAttribute 类的新实例。

WebDisplayNameAttribute()

初始化 WebDisplayNameAttribute 类的新实例,而不使用指定的名称。

public:
 WebDisplayNameAttribute();
public WebDisplayNameAttribute ();
Public Sub New ()

注解

构造 WebDisplayNameAttribute 函数将 DisplayName 属性设置为空字符串 (“”) 。

适用于

WebDisplayNameAttribute(String)

用指定的显示名称初始化 WebDisplayNameAttribute 类的新实例。

public:
 WebDisplayNameAttribute(System::String ^ displayName);
public WebDisplayNameAttribute (string displayName);
new System.Web.UI.WebControls.WebParts.WebDisplayNameAttribute : string -> System.Web.UI.WebControls.WebParts.WebDisplayNameAttribute
Public Sub New (displayName As String)

参数

displayName
String

要在 PropertyGridEditorPart 中使用的友好名称。

示例

下面的代码示例演示如何使用WebDisplayNameAttribute属性将显示名称分配给Web 部件控件上的属性。 为自定义 UserJobType 属性提供在控件中显示的 PropertyGridEditorPart 友好名称“作业类型”。 该名称通过 WebDisplayNameAttribute 构造函数分配。 此示例是类概述中找到的较大示例的 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

注解

构造 WebDisplayNameAttribute 函数将 DisplayName 属性设置为 displayName. 参数 displayName 是控件中显示的 PropertyGridEditorPart 值。

适用于