ImportCatalogPart.Title 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置在 ImportCatalogPart 控件的标题栏中显示的标题。
public:
virtual property System::String ^ Title { System::String ^ get(); void set(System::String ^ value); };
public override string Title { get; set; }
member this.Title : string with get, set
Public Overrides Property Title As String
属性值
用作控件标题的字符串。 默认值是 Web 部件控件集提供的、计算出的控件名称。
示例
下面的代码示例演示如何以声明方式和编程方式使用 Title 属性。 有关运行示例所需的完整代码和说明,请参阅类概述的示例 ImportCatalogPart 部分。
在代码的以下部分中,请注意, Title 属性值是以声明方式为控件设置的。
<asp:CatalogZone ID="CatalogZone1" runat="server">
<ZoneTemplate>
<asp:ImportCatalogPart ID="ImportCatalogPart1"
runat="server"
Title="My ImportCatalogPart"
OnPreRender="ImportCatalogPart1_PreRender"
BrowseHelpText="Type a path or browse to find a control's
description file."
UploadButtonText="Upload Description File"
UploadHelpText="Click the button to upload the description
file."
ImportedPartLabelText="My User Information WebPart"
PartImportErrorLabelText="An error occurred while trying
to import a description file." />
</ZoneTemplate>
</asp:CatalogZone>
<asp:CatalogZone ID="CatalogZone1" runat="server">
<ZoneTemplate>
<asp:ImportCatalogPart ID="ImportCatalogPart1"
runat="server"
Title="My ImportCatalogPart"
OnPreRender="ImportCatalogPart1_PreRender"
BrowseHelpText="Type a path or browse to find a control's
description file."
UploadButtonText="Upload Description File"
UploadHelpText="Click the button to upload the description
file."
ImportedPartLabelText="My User Information WebPart"
PartImportErrorLabelText="An error occurred while trying
to import a description file." />
</ZoneTemplate>
</asp:CatalogZone>
在代码的此部分, Title 属性值以编程方式分配。
protected void Button1_Click(object sender, EventArgs e)
{
ImportCatalogPart1.Title = "Import Server Controls";
ImportCatalogPart1.BrowseHelpText = "Enter the path to a "
+ "description file.";
ImportCatalogPart1.UploadButtonText = "Upload Description";
ImportCatalogPart1.UploadHelpText = "Upload a description file.";
ImportCatalogPart1.ImportedPartLabelText = "Imported Controls";
ImportCatalogPart1.PartImportErrorLabelText = "An error occurred "
+ "during the import process.";
}
Protected Sub Button1_Click(ByVal sender As Object, _
ByVal e As EventArgs)
ImportCatalogPart1.Title = "Import Server Controls"
ImportCatalogPart1.BrowseHelpText = "Enter the path to a " _
& "description file."
ImportCatalogPart1.UploadButtonText = "Upload Description"
ImportCatalogPart1.UploadHelpText = "Upload a description file."
ImportCatalogPart1.ImportedPartLabelText = "Imported Controls"
ImportCatalogPart1.PartImportErrorLabelText = "An error occurred " _
& "during the import process."
End Sub
在浏览器中加载页面时,可以使用 “显示模式 ”下拉列表控件选择“ 目录模式 ”,并将页面切换到目录模式。 在目录模式下的页面和描述文件上传后,请注意控件的用户界面 (UI) ImportCatalogPart 中显示的各种文本字符串。 如果单击“ 上传说明文件 ”按钮,UI 中多个属性的文本将更改,包括属性的文本 Title 。
注解
当 Title 控件在目录模式下可见时,属性值将显示在控件的 ImportCatalogPart 标题栏中。 在页中声明控件时,可以使用 特性设置 属性 Title
的值。 如果不为游戏提供值,则使用特定于区域性的默认值来描述此控件允许用户编辑的属性类型。