Aracılığıyla paylaş


WebDescriptionAttribute Oluşturucular

Tanım

WebDescriptionAttribute sınıfının yeni bir örneğini başlatır.

Aşırı Yüklemeler

WebDescriptionAttribute()

WebDescriptionAttribute sınıfının yeni bir örneğini başlatır.

WebDescriptionAttribute(String)

Belirtilen açıklamayla sınıfının yeni bir örneğini WebDescriptionAttribute başlatır.

WebDescriptionAttribute()

WebDescriptionAttribute sınıfının yeni bir örneğini başlatır.

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

Açıklamalar

Oluşturucu özelliği WebDescriptionAttribute boş bir dize ("") olarak ayarlar Description .

Şunlara uygulanır

WebDescriptionAttribute(String)

Belirtilen açıklamayla sınıfının yeni bir örneğini WebDescriptionAttribute başlatır.

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

Parametreler

description
String

Bir PropertyGridEditorPartiçinde kullanılacak Araç İpucu.

Örnekler

Aşağıdaki kod örneği, Web Bölümleri denetimindeki bir özelliğe ToolTip atamak için özniteliğinin WebDescriptionAttribute nasıl kullanılacağını gösterir. Özel UserJobType özelliğe Araç İpucu "İşinize karşılık gelen kategoriyi seçin" verilir. PropertyGridEditorPart öğesini seçin. Araç İpucu oluşturucu aracılığıyla WebDescriptionAttribute atanır. Bu örnek, sınıfa genel bakış bölümünde PropertyGridEditorPart bulunan daha büyük bir örneğin bir parçasıdır.

[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

Açıklamalar

Oluşturucu, WebDescriptionAttribute özelliğini olarak descriptionayarlarDescription. description parametresi, denetimdeki bir özellik PropertyGridEditorPart için Araç İpucu olarak görünecek değerdir.

Şunlara uygulanır