WebPartDescription.Title 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取相应 WebPart 控件的标题文本。
public:
property System::String ^ Title { System::String ^ get(); };
public string Title { get; }
member this.Title : string
Public ReadOnly Property Title As String
属性值
字符串,包含相应控件的标题。 默认值是一个计算出的字符串,由 .NET Framework 提供。
示例
下面的代码示例演示如何以编程方式使用 Title 属性。 有关运行此代码示例所需的完整代码,请参阅类概述主题的示例 WebPartDescription 部分。
网页 方法中的Button1_Click
以下代码演示如何使用 GetAvailableWebPartDescriptions 方法获取目录中对象的WebPartDescription集合,然后通过循环访问 WebPartDescription 对象来显示目录中每个WebPart控件的详细信息。 请注意,将在 Title 以下代码中检索属性值。
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = String.Empty;
WebPartDescriptionCollection descriptions =
DeclarativeCatalogPart1.GetAvailableWebPartDescriptions();
foreach (WebPartDescription desc in descriptions)
{
Label1.Text += "ID: " + desc.ID + "<br />" +
"Title: " + desc.Title + "<br />" +
"Description: " + desc.Description + "<br />" +
"ImageUrl: " + desc.CatalogIconImageUrl + "<br />" +
"<hr />";
}
}
Protected Sub Button1_Click(ByVal sender As Object, _
ByVal e As System.EventArgs)
Label1.Text = String.Empty
Dim descriptions As WebPartDescriptionCollection = _
DeclarativeCatalogPart1.GetAvailableWebPartDescriptions()
Dim desc As WebPartDescription
For Each desc In descriptions
Label1.Text += "ID: " & desc.ID & "<br />" & _
"Title: " & desc.Title & "<br />" & _
"Description: " & desc.Description & "<br />" & _
"ImageUrl: " & desc.CatalogIconImageUrl & "<br />" & _
"<hr />"
Next
End Sub
注解
属性的值 Title 直接 WebPart.DisplayTitle 对应于 属性。 无论相应 WebPart 控件对其 DisplayTitle 属性具有什么,都会成为 属性的值 Title ;否则,标题是计算值。
仅 Title 当页面处于目录显示模式且控件显示在控件目录中时, WebPart 属性才适用。 分配给控件的任何标题 WebPart 都会显示在目录中的控件旁边。