WebPartZone 类

定义

用作 Web 部件控件集内的主控件,用于在网页中承载 WebPart 控件。

public ref class WebPartZone : System::Web::UI::WebControls::WebParts::WebPartZoneBase
public class WebPartZone : System.Web.UI.WebControls.WebParts.WebPartZoneBase
type WebPartZone = class
    inherit WebPartZoneBase
Public Class WebPartZone
Inherits WebPartZoneBase
继承

示例

下面的代码示例演示如何 WebPartZone 在 Web 部件页中使用 控件。 若要运行代码示例,必须编译此源代码。 可以显式编译它,并将生成的程序集放入网站的 Bin 文件夹或全局程序集缓存中。 或者,可以将源代码放在站点的“App_Code”文件夹中,并在运行时对其进行动态编译。 有关演示这两种编译方法的演练,请参阅 演练:开发和使用自定义 Web 服务器控件

该示例的第一部分显示了一个继承自 WebPartZone 类的自定义类,该类在构造函数中设置两个基区域属性。

using System;
using System.Collections;
using System.ComponentModel;
using System.Security.Permissions;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;

namespace Samples.AspNet.CS.Controls
{
  [AspNetHostingPermission(SecurityAction.Demand, 
    Level=AspNetHostingPermissionLevel.Minimal)]
  [AspNetHostingPermission(SecurityAction.InheritanceDemand, 
    Level=AspNetHostingPermissionLevel.Minimal)]
  public class MyWebPartZone : WebPartZone
  {
    public MyWebPartZone()
    {
      base.VerbButtonType = ButtonType.Button;
      base.CloseVerb.Enabled = false;
    }
  }
}
Imports System.Web.UI.WebControls.WebParts
Imports System.Web.UI.WebControls
Imports System.Web.UI
Imports System.Web
Imports System.Security.Permissions
Imports System.ComponentModel
Imports System.Collections
Namespace Samples.AspNet.VB.Controls
  

<AspNetHostingPermission(SecurityAction.Demand, _
  Level := AspNetHostingPermissionLevel.Minimal)> _
<AspNetHostingPermission(SecurityAction.InheritanceDemand, _
  Level := AspNetHostingPermissionLevel.Minimal)> _
Public Class MyWebPartZone
  Inherits WebPartZone
  
  Public Sub New()
    MyBase.New
    MyBase.VerbButtonType = ButtonType.Button
    MyBase.CloseVerb.Enabled = false
  End Sub
End Class
  
End Namespace

该示例的第二部分显示了一个包含自定义 WebPartZone 控件的页面。 请注意,页面需要页面顶部附近的特殊 Register 指令来引用包含自定义区域的程序集。 该页还包含元素 <asp:webpartmanager> ,这是每个 Web 部件页上所必需的。 <cc1:MyWebPartZone>表示自定义WebPartZone控件的 元素包含标准 ASP.NET Calendar 控件。 由于它包含在区域中 WebPartZone ,因此控件 Calendar 将在运行时与 控件一起 GenericWebPart 包装,这使它能够充当 WebPart 控件。

<%@ Page Language="C#" %>
<%@ Register TagPrefix="cc1" 
  Namespace="Samples.AspNet.CS.Controls" 
  Assembly="MyWebPartZoneCS" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
      <asp:WebPartManager ID="WebPartManager1" runat="server" />
      <cc1:MyWebPartZone ID="MyWebPartZone1" runat="server">
        <VerbStyle Font-Italic="true" />
        <PartChromeStyle BackColor="lightblue" />
        <PartStyle BackColor="gray" />
        <PartTitleStyle Font-Bold="true" />
        <ZoneTemplate>
          <asp:Calendar ID="Calendar1" runat="server" 
            Title="My Calendar" />
        </ZoneTemplate>
      </cc1:MyWebPartZone>
    </div>
    </form>
</body>
</html>
<%@ Page Language="vb" %>
<%@ Register TagPrefix="cc1" 
  Namespace="Samples.AspNet.VB.Controls" 
  Assembly="MyWebPartZoneVB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
      <asp:WebPartManager ID="WebPartManager1" runat="server" />
      <cc1:MyWebPartZone ID="MyWebPartZone1" runat="server">
        <VerbStyle Font-Italic="true" />
        <PartChromeStyle BackColor="lightblue" />
        <PartStyle BackColor="gray" />
        <PartTitleStyle Font-Bold="true" />
        <ZoneTemplate>
          <asp:Calendar ID="Calendar1" runat="server" 
            Title="My Calendar" />
        </ZoneTemplate>
      </cc1:MyWebPartZone>
    </div>
    </form>
</body>
</html>

检查自定义 WebPartZone 控件的声明性标记。 请注意,可以在 标记中设置各种区域级属性,如以下代码示例所示。

注意

请务必注意 元素的 <zonetemplate> 用法。 如“备注”部分中所述,此元素在区域中是必需的 WebPartZone ,才能包装在页面中声明的静态 WebPart 控件。

<cc1:MyWebPartZone ID="MyWebPartZone1" runat="server">
  <VerbStyle Font-Italic="true" />
  <PartChromeStyle BackColor="lightblue" />
  <PartStyle BackColor="gray" />
  <PartTitleStyle Font-Bold="true" />
  <ZoneTemplate>
    <asp:Calendar ID="Calendar1" runat="server" 
      Title="My Calendar" />
  </ZoneTemplate>
</cc1:MyWebPartZone>
<cc1:MyWebPartZone ID="MyWebPartZone1" runat="server">
  <VerbStyle Font-Italic="true" />
  <PartChromeStyle BackColor="lightblue" />
  <PartStyle BackColor="gray" />
  <PartTitleStyle Font-Bold="true" />
  <ZoneTemplate>
    <asp:Calendar ID="Calendar1" runat="server" 
      Title="My Calendar" />
  </ZoneTemplate>
</cc1:MyWebPartZone>

注解

在 Web 部件功能中,区域是包含 Web 部件控件的网页上定义的区域。 区域的主要功能是设置其包含的控件的布局,并为这些控件提供通用用户界面 (UI) 。 有关区域及其在 Web 部件应用程序中的使用方式的一般信息,请参阅基 WebZone 类和 WebPartZoneBase 类的参考文档,以及标题为 Web 部件控件集概述的主题。

控件的特殊WebPartZone功能是包含WebPart构成 Web 部件应用程序main UI 的控件。 WebPartZone可以在网页上以持久性格式声明控件,使开发人员能够将其用作模板并在 元素中添加<asp:webpartzone>其他服务器控件。 任何类型的服务器控件(如果添加到区域) WebPartZone 都可以在运行时充当 WebPart 控件。 无论添加的控件是 WebPart 控件、用户控件、自定义控件还是 ASP.NET 控件,都是如此。 有关详细信息,请参阅 类的主题 GenericWebPart

除了包含 WebPart 控件外, WebPartZone 控件还为它包含的控件提供通用 UI。 此通用 UI(统称为 chrome)包含所有控件上的外围 UI 元素,例如边框、标题、页眉和页脚、样式特征以及用户可以对控件执行的 UI 操作 (谓词,例如关闭或最小化) 。

注意

Internet Explorer 可能会以意外的方式呈现 或其包含控件的高度 WebPartZone ,具体取决于区域的方向。 有关更多详细信息,请参阅 或 Height 属性的文档LayoutOrientation

WebPartZone 从基 WebZone 类 和 WebPartZoneBase 类派生其大部分行为;它只添加一个唯一成员, ZoneTemplate 即 属性。 此属性引用对象 ITemplate ,该对象是一个模板,允许页面开发人员使用 <zonetemplate> .aspx 页的声明性标记中的 元素静态定义区域中的控件。

可访问性

默认情况下为此控件呈现的标记可能不符合辅助功能标准,例如 Web 内容辅助功能指南 1.0 (WCAG) 优先级 1 准则。 有关此控件的辅助功能支持的详细信息,请参阅 ASP.NET 控件和辅助功能

构造函数

WebPartZone()

初始化 WebPartZone 类的新实例。

属性

AccessKey

获取或设置使您得以快速导航到 Web 服务器控件的访问键。

(继承自 WebControl)
Adapter

获取控件的浏览器特定适配器。

(继承自 Control)
AllowLayoutChange

获取或设置指示区域中 WebPart 控件布局的值是否可以更改的值。

(继承自 WebPartZoneBase)
AppRelativeTemplateSourceDirectory

获取或设置包含该控件的 PageUserControl 对象的应用程序相对虚拟目录。

(继承自 Control)
Attributes

获取与控件的特性不对应的任意特性(只用于呈现)的集合。

(继承自 WebControl)
BackColor

获取或设置 Web 服务器控件的背景色。

(继承自 WebControl)
BackImageUrl

获取或设置指向区域的背景图像的 URL。

(继承自 WebZone)
BindingContainer

获取包含该控件的数据绑定的控件。

(继承自 Control)
BorderColor

获取或设置 WebPartZoneBase 控件的边框颜色。

(继承自 WebPartZoneBase)
BorderStyle

获取或设置环绕 WebPartZoneBase 控件的边框的种类。

(继承自 WebPartZoneBase)
BorderWidth

获取或设置环绕 WebPartZoneBase 控件的边框的宽度。

(继承自 WebPartZoneBase)
ChildControlsCreated

获取一个值,该值指示是否已创建服务器控件的子控件。

(继承自 Control)
ClientID

获取由 ASP.NET 生成的 HTML 标记的控件 ID。

(继承自 Control)
ClientIDMode

获取或设置用于生成 ClientID 属性值的算法。

(继承自 Control)
ClientIDSeparator

获取一个字符值,该值表示 ClientID 属性中使用的分隔符字符。

(继承自 Control)
CloseVerb

获取对 WebPartVerb 对象的引用,该对象使最终用户能够关闭区域中的 WebPart 控件。

(继承自 WebPartZoneBase)
ConnectVerb

获取对 WebPartVerb 对象的引用,该对象使最终用户能够创建 WebPart 控件之间的连接。

(继承自 WebPartZoneBase)
Context

为当前 Web 请求获取与服务器控件关联的 HttpContext 对象。

(继承自 Control)
Controls

获取表示 ControlCollection 中的子控件的 CompositeControl 对象。

(继承自 CompositeControl)
ControlStyle

获取 Web 服务器控件的样式。 此属性主要由控件开发人员使用。

(继承自 WebControl)
ControlStyleCreated

获取一个值,该值指示是否已为 Style 属性创建了 ControlStyle 对象。 此属性主要由控件开发人员使用。

(继承自 WebControl)
CssClass

获取或设置由 Web 服务器控件在客户端呈现的级联样式表 (CSS) 类。

(继承自 WebControl)
DataItemContainer

如果命名容器实现 IDataItemContainer,则获取对命名容器的引用。

(继承自 Control)
DataKeysContainer

如果命名容器实现 IDataKeysControl,则获取对命名容器的引用。

(继承自 Control)
DeleteVerb

获取对 WebPartVerb 对象的引用,该对象使最终用户能够删除区域中的 WebPart 控件。

(继承自 WebPartZoneBase)
DesignMode

获取一个值,该值指示是否正在使用设计图面上的一个控件。

(继承自 Control)
DisplayTitle

获取在某个 WebPartZoneBase 区域本身可见时被用作该区域标题的文本的当前值。

(继承自 WebPartZoneBase)
DragDropEnabled

获取指示是否可以 WebPart 将控件拖入和拖出区域的值。

(继承自 WebPartZoneBase)
DragHighlightColor

获取或设置环绕 WebPartZoneBase 区域及用户拖动控件时放置提示范围的边框的颜色。

(继承自 WebPartZoneBase)
EditVerb

获取对 WebPartVerb 对象的引用,该对象使最终用户能够编辑区域中的 WebPart 控件。

(继承自 WebPartZoneBase)
EmptyZoneText

获取或设置在 WebPartZoneBase 控件不包含任何 WebPart 控件时出现的消息。

(继承自 WebPartZoneBase)
EmptyZoneTextStyle

获取空区域中的占位符文本的样式特性。

(继承自 WebZone)
Enabled

获取或设置一个值,该值指示是否启用 Web 服务器控件。

(继承自 WebControl)
EnableTheming

获取或设置一个值,该值指示主题是否应用于该控件。

(继承自 WebControl)
EnableViewState

获取或设置一个值,该值指示服务器控件是否向发出请求的客户端保持自己的视图状态以及它所包含的任何子控件的视图状态。

(继承自 Control)
ErrorStyle

获取用于呈现在无法加载或创建 WebPart 控件时显示的错误消息的样式特性。

(继承自 WebZone)
Events

获取控件的事件处理程序委托列表。 此属性为只读。

(继承自 Control)
ExportVerb

获取对 WebPartVerb 对象的引用,该对象使最终用户能够导出区域中每个 WebPart 控件的 XML 定义文件。

(继承自 WebPartZoneBase)
Font

获取与 Web 服务器控件关联的字体属性。

(继承自 WebControl)
FooterStyle

获取区域的页脚区域内容的样式特性。

(继承自 WebZone)
ForeColor

获取或设置 Web 服务器控件的前景色(通常是文本颜色)。

(继承自 WebControl)
HasAttributes

获取一个值,该值指示控件是否具有特性集。

(继承自 WebControl)
HasChildViewState

获取一个值,该值指示当前服务器控件的子控件是否具有任何已保存的视图状态设置。

(继承自 Control)
HasFooter

获取一个值,该值指示区域中是否具有页脚区域。

(继承自 WebPartZoneBase)
HasHeader

获取一个值,该值指示区域是否具有页眉区域。

(继承自 WebPartZoneBase)
HeaderStyle

获取区域的页眉区域内容的样式特性。

(继承自 WebZone)
HeaderText

获取或设置区域的页眉区的文本。

(继承自 WebZone)
Height

获取或设置 Web 服务器控件的高度。

(继承自 WebControl)
HelpVerb

获取对 WebPartVerb 对象的引用,该对象用于访问区域中 WebPart 控件的“帮助”内容。

(继承自 WebPartZoneBase)
ID

获取或设置分配给服务器控件的编程标识符。

(继承自 Control)
IdSeparator

获取用于分隔控件标识符的字符。

(继承自 Control)
IsChildControlStateCleared

获取一个值,该值指示该控件中包含的控件是否具有控件状态。

(继承自 Control)
IsEnabled

获取一个值,该值指示是否启用控件。

(继承自 WebControl)
IsTrackingViewState

获取一个值,用于指示服务器控件是否会将更改保存到其视图状态中。

(继承自 Control)
IsViewStateEnabled

获取一个值,该值指示是否为该控件启用了视图状态。

(继承自 Control)
LayoutOrientation

获取或设置指示区域中的控件是垂直排列还是水平排列的值。

(继承自 WebPartZoneBase)
LoadViewStateByID

获取一个值,该值指示控件是否通过 ID 而不是索引参与加载其视图状态。

(继承自 Control)
MenuCheckImageStyle

获取应用于出现在选定谓词文本后的谓词菜单文本上的选中标记图像的特性。

(继承自 WebPartZoneBase)
MenuCheckImageUrl

获取或设置在区域中每个 WebPart 控件的谓词菜单中被用作选中标记的图像的 URL。

(继承自 WebPartZoneBase)
MenuLabelHoverStyle

获取在用户将鼠标指针定位于 WebPart 控件标题栏中的谓词菜单标签上时被应用于该标签的样式特性。

(继承自 WebPartZoneBase)
MenuLabelStyle

获取出现在区域中每个 WebPart 控件的标题栏中的谓词下拉菜单的标签的样式信息。

(继承自 WebPartZoneBase)
MenuLabelText

获取或设置作为区域中每个 WebPart 控件的标题栏中的谓词下拉菜单的标签样式信息的值。

(继承自 WebPartZoneBase)
MenuPopupImageUrl

获取或设置图像的 URL,该图像打开区域中每个 WebPart 控件的标题栏中的谓词下拉菜单。

(继承自 WebPartZoneBase)
MenuPopupStyle

获取出现在区域中 WebPart 控件上的下拉谓词菜单的样式特性。

(继承自 WebPartZoneBase)
MenuVerbHoverStyle

获取在最终用户将鼠标指针定位在谓词下拉菜单中的某个谓词之上时该谓词的外观的样式信息。

(继承自 WebPartZoneBase)
MenuVerbStyle

获取谓词下拉菜单显示时该菜单中谓词的外观的样式信息。

(继承自 WebPartZoneBase)
MinimizeVerb

获取对 WebPartVerb 对象的引用,该对象使最终用户能够最小化区域中的 WebPart 控件。

(继承自 WebPartZoneBase)
NamingContainer

获取对服务器控件的命名容器的引用,此引用创建唯一的命名空间,以区分具有相同 ID 属性值的服务器控件。

(继承自 Control)
Padding

获取或设置区域中包含 WebPart 控件的表的单元格填充特性。

(继承自 WebZone)
Page

获取对包含服务器控件的 Page 实例的引用。

(继承自 Control)
Parent

获取对页 UI 层次结构中服务器控件的父控件的引用。

(继承自 Control)
PartChromePadding

获取或设置 WebPart 控件的内容和此控件的边框之间的距离。

(继承自 WebZone)
PartChromeStyle

获取适用于区域所包含的 Web 部件控件的边框的样式属性。

(继承自 WebZone)
PartChromeType

获取或设置构成区域所包含的 Web 部件控件的框架的边框类型。

(继承自 WebZone)
PartStyle

获取适用于区域所包含的每个 Web 部件控件的边框和内容的样式属性。

(继承自 WebZone)
PartTitleStyle

获取区域所包含的每个 Web 部件控件的标题栏内容的样式特性。

(继承自 WebZone)
RenderClientScript

获取一个值,该值指示是否在 Web 部件页上呈现客户端脚本。

(继承自 WebZone)
RenderingCompatibility

获取一个值,该值指定呈现的 HTML 将与之兼容的 ASP.NET 版本。

(继承自 Control)
RestoreVerb

获取对 WebPartVerb 对象的引用,该对象使最终用户能够将区域中的 WebPart 控件还原为正常大小。

(继承自 WebPartZoneBase)
SelectedPartChromeStyle

获取区域中选定的 WebPart 控件的外观的样式信息。

(继承自 WebPartZoneBase)
ShowTitleIcons

获取或设置指示标题图标是否显示在区域中每个 WebPart 控件的标题栏中的值。

(继承自 WebPartZoneBase)
Site

获取容器信息,该容器在呈现于设计图面上时承载当前控件。

(继承自 Control)
SkinID

获取或设置要应用于控件的外观。

(继承自 WebControl)
Style

获取将在 Web 服务器控件的外部标记上呈现为样式特性的文本特性的集合。

(继承自 WebControl)
SupportsDisabledAttribute

获取一个值,该值指示在控件的 disabled 属性为 IsEnabled 时,控件是否应将呈现的 HTML 元素的 false 特性设置为 "disabled"。

(继承自 CompositeControl)
TabIndex

获取或设置 Web 服务器控件的选项卡索引。

(继承自 WebControl)
TagKey

获取对应于此 Web 服务器控件的 HtmlTextWriterTag 值。 此属性主要由控件开发人员使用。

(继承自 WebZone)
TagName

获取控件标记的名称。 此属性主要由控件开发人员使用。

(继承自 WebControl)
TemplateControl

获取或设置对包含该控件的模板的引用。

(继承自 Control)
TemplateSourceDirectory

获取包含当前服务器控件的 PageUserControl 的虚拟目录。

(继承自 Control)
TitleBarVerbButtonType

获取或设置用于 WebPart 控件的标题栏中的谓词的按钮类型。

(继承自 WebPartZoneBase)
TitleBarVerbStyle

获取 WebPart 控件的标题栏中的谓词的样式特性。

(继承自 WebPartZoneBase)
ToolTip

获取或设置当鼠标指针悬停在 Web 服务器控件上时显示的文本。

(继承自 WebControl)
UniqueID

获取服务器控件的唯一的、以分层形式限定的标识符。

(继承自 Control)
ValidateRequestMode

获取或设置指示控件是否检查来自浏览器的客户端输入是否具有潜在危险值的值。

(继承自 Control)
VerbButtonType

获取或设置与 WebPartZoneBase 区域中存在的谓词关联的按钮类型(当使用较早的浏览器访问时)。

(继承自 WebPartZoneBase)
VerbStyle

获取与区域中的 Web 部件控件关联的用户界面 (UI) 谓词的样式特性。

(继承自 WebZone)
ViewState

获取状态信息的字典,这些信息使您可以在同一页的多个请求间保存和还原服务器控件的视图状态。

(继承自 Control)
ViewStateIgnoresCase

获取一个值,该值指示 StateBag 对象是否不区分大小写。

(继承自 Control)
ViewStateMode

获取或设置此控件的视图状态模式。

(继承自 Control)
Visible

获取或设置一个值,该值指示服务器控件是否作为 UI 呈现在页上。

(继承自 Control)
WebPartChrome

获取对 WebPartChrome 对象的引用,该对象确定区域中 WebPart 控件的外围呈现。

(继承自 WebPartZoneBase)
WebPartManager

获取对与 Web 部件页上的 WebPartManager 控件实例关联的 WebZone 控件的引用。

(继承自 WebZone)
WebParts

获取区域中包含的 Web 部件控件的集合。

(继承自 WebPartZoneBase)
WebPartVerbRenderMode

获取或设置指示应该如何在区域中的 WebPart 控件上呈现谓词的值。

(继承自 WebPartZoneBase)
Width

获取或设置 Web 服务器控件的宽度。

(继承自 WebControl)
ZoneTemplate

获取或设置对 ITemplate 实例的引用,该实例包含网页标记中声明的控件。

方法

AddAttributesToRender(HtmlTextWriter)

将需要呈现的 HTML 特性和样式添加到指定的 HtmlTextWriterTag 中。 此方法主要由控件开发人员使用。

(继承自 WebControl)
AddedControl(Control, Int32)

在子控件添加到 Control 对象的 Controls 集合后调用。

(继承自 Control)
AddParsedSubObject(Object)

通知服务器控件,分析了一个元素(XML 或 HTML),并将该元素添加到服务器控件的 ControlCollection 对象中。

(继承自 Control)
ApplyStyle(Style)

将指定样式的所有非空白元素复制到 Web 控件,覆盖控件的所有现有的样式元素。 此方法主要由控件开发人员使用。

(继承自 WebControl)
ApplyStyleSheetSkin(Page)

将页样式表中定义的样式属性应用到控件。

(继承自 Control)
BeginRenderTracing(TextWriter, Object)

开始输出数据的设计时追踪。

(继承自 Control)
BuildProfileTree(String, Boolean)

收集有关服务器控件的信息并将该信息发送到 Trace 属性,在启用页的跟踪功能时将显示该属性。

(继承自 Control)
ClearCachedClientID()

将缓存的 ClientID 值设置为 null

(继承自 Control)
ClearChildControlState()

删除服务器控件的子控件的控件状态信息。

(继承自 Control)
ClearChildState()

删除服务器控件的所有子控件的视图状态和控件状态信息。

(继承自 Control)
ClearChildViewState()

删除服务器控件的所有子控件的视图状态信息。

(继承自 Control)
ClearEffectiveClientIDMode()

将当前控件实例和任何子控件的 ClientIDMode 属性设置为 Inherit

(继承自 Control)
CloseWebPart(WebPart)

关闭区域中选定的 WebPart 控件。

(继承自 WebPartZoneBase)
ConnectWebPart(WebPart)

开始创建两个 WebPart 控件之间的连接的过程。

(继承自 WebPartZoneBase)
CopyBaseAttributes(WebControl)

Style 对象未封装的属性从指定的 Web 服务器控件复制到从中调用此方法的 Web 服务器控件。 此方法主要由控件开发人员使用。

(继承自 WebControl)
CreateChildControls()

创建区域中包含的子控件集。

(继承自 WebPartZoneBase)
CreateControlCollection()

创建包含区域中的所有控件的 ControlCollection 对象。

(继承自 WebPartZoneBase)
CreateControlStyle()

创建在区域控件可见时应用于它的样式特征的集合。

(继承自 WebPartZoneBase)
CreateWebPartChrome()

使派生区域能够替换自定义的 WebPartChrome 对象以更改区域中 WebPart 控件的外观。

(继承自 WebPartZoneBase)
DataBind()

将数据源绑定到 CompositeControl 及其所有子控件。

(继承自 CompositeControl)
DataBind(Boolean)

将数据源绑定到调用的服务器控件及其所有子控件,同时可以选择引发 DataBinding 事件。

(继承自 Control)
DataBindChildren()

将数据源绑定到服务器控件的子控件。

(继承自 Control)
DeleteWebPart(WebPart)

删除区域中选定的 WebPart 控件。

(继承自 WebPartZoneBase)
Dispose()

使服务器控件得以在从内存中释放之前执行最后的清理操作。

(继承自 Control)
EditWebPart(WebPart)

开始编辑区域中选定的 WebPart 控件的过程。

(继承自 WebPartZoneBase)
EndRenderTracing(TextWriter, Object)

结束输出数据的设计时追踪。

(继承自 Control)
EnsureChildControls()

确定服务器控件是否包含子控件。 如果不包含,则创建子控件。

(继承自 Control)
EnsureID()

为尚未分配标识符的控件创建标识符。

(继承自 Control)
Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
FindControl(String)

在当前的命名容器中搜索带指定 id 参数的服务器控件。

(继承自 Control)
FindControl(String, Int32)

使用指定的 idpathOffset 参数(该参数有助于搜索)中指定的整数在当前命名容器中搜索服务器控件。 不应重写此版本的 FindControl 方法。

(继承自 Control)
Focus()

为控件设置输入焦点。

(继承自 Control)
GetDesignModeState()

获取控件的设计时数据。

(继承自 Control)
GetEffectiveChromeType(Part)

给定该区域的 PartChromeType 属性以及 Web 部件页的当前显示模式,则返回 WebPart 控件实际或有效的当前 PartChromeType 值。

(继承自 WebPartZoneBase)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetInitialWebParts()

重写抽象基方法,并获取区域模板中初始的静态 WebPart 控件集。

GetRouteUrl(Object)

获取与一组路由参数对应的 URL。

(继承自 Control)
GetRouteUrl(RouteValueDictionary)

获取与一组路由参数对应的 URL。

(继承自 Control)
GetRouteUrl(String, Object)

获取与一组路由参数以及某个路由名称对应的 URL。

(继承自 Control)
GetRouteUrl(String, RouteValueDictionary)

获取与一组路由参数以及某个路由名称对应的 URL。

(继承自 Control)
GetType()

获取当前实例的 Type

(继承自 Object)
GetUniqueIDRelativeTo(Control)

返回指定控件的 UniqueID 属性的前缀部分。

(继承自 Control)
HasControls()

确定服务器控件是否包含任何子控件。

(继承自 Control)
HasEvents()

返回一个值,该值指示是否为控件或任何子控件注册事件。

(继承自 Control)
IsLiteralContent()

确定服务器控件是否只包含文字内容。

(继承自 Control)
LoadControlState(Object)

SaveControlState() 方法保存的上一个页请求还原控件状态信息。

(继承自 Control)
LoadViewState(Object)

为某个区域加载以前保存的状态信息。

(继承自 WebPartZoneBase)
MapPathSecure(String)

检索虚拟路径(绝对的或相对的)映射到的物理路径。

(继承自 Control)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
MergeStyle(Style)

将指定样式的所有非空白元素复制到 Web 控件,但不覆盖该控件现有的任何样式元素。 此方法主要由控件开发人员使用。

(继承自 WebControl)
MinimizeWebPart(WebPart)

最小化区域中选定的 WebPart 控件。

(继承自 WebPartZoneBase)
OnBubbleEvent(Object, EventArgs)

确定服务器控件的事件是否沿页的 UI 服务器控件层次结构向上传递。

(继承自 Control)
OnCreateVerbs(WebPartVerbsEventArgs)

引发 CreateVerbs 事件。

(继承自 WebPartZoneBase)
OnDataBinding(EventArgs)

引发 DataBinding 事件。

(继承自 Control)
OnInit(EventArgs)

重写基方法,以指示区域已向 WebPartManager 控件进行了成功的注册。

OnLoad(EventArgs)

引发 Load 事件。

(继承自 Control)
OnPreRender(EventArgs)

引发 PreRender 事件。

(继承自 WebPartZoneBase)
OnUnload(EventArgs)

引发 Unload 事件。

(继承自 Control)
OpenFile(String)

获取用于读取文件的 Stream

(继承自 Control)
RaiseBubbleEvent(Object, EventArgs)

将所有事件源及其信息分配给控件的父级。

(继承自 Control)
RaisePostBackEvent(String)

根据自最近的回发事件以来所发生的更改更新区域中 WebPart 控件的当前集合的状态。

(继承自 WebPartZoneBase)
RecreateChildControls()

在派生自 CompositeControl 的控件中重新创建子控件。

(继承自 CompositeControl)
RemovedControl(Control)

Control 对象的 Controls 集合移除子控件后调用。

(继承自 Control)
Render(HtmlTextWriter)

将区域呈现给指定的 HtmlTextWriter 对象。

(继承自 WebPartZoneBase)
RenderBeginTag(HtmlTextWriter)

将区域控件的 HTML 开始标记呈现为指定的 HtmlTextWriter 对象。

(继承自 WebZone)
RenderBody(HtmlTextWriter)

重写基方法,以便呈现某个区域的正文区,该区域从 WebPartZoneBase 类派生。

(继承自 WebPartZoneBase)
RenderChildren(HtmlTextWriter)

将服务器控件子级的内容输出到提供的 HtmlTextWriter 对象,该对象可写入要在客户端上呈现的内容。

(继承自 Control)
RenderContents(HtmlTextWriter)

将区域控件中开始标记和结束标记之间的所有内容呈现为指定的 HtmlTextWriter 对象。

(继承自 WebZone)
RenderControl(HtmlTextWriter)

将服务器控件内容输出到所提供的 HtmlTextWriter 对象,如果启用了跟踪,则还将存储有关该控件的跟踪信息。

(继承自 Control)
RenderControl(HtmlTextWriter, ControlAdapter)

使用提供的 HtmlTextWriter 对象将服务器控件内容输出到提供的 ControlAdapter 对象。

(继承自 Control)
RenderDropCue(HtmlTextWriter)

呈现用户界面 (UI) 元素以便向最终用户指示当前正被拖动的 WebPart 控件在区域中的可放置位置。

(继承自 WebPartZoneBase)
RenderEndTag(HtmlTextWriter)

将控件的 HTML 结束标记呈现到指定的编写器中。 此方法主要由控件开发人员使用。

(继承自 WebControl)
RenderFooter(HtmlTextWriter)

重写对区域控件的页脚的呈现。

(继承自 WebZone)
RenderHeader(HtmlTextWriter)

重写基方法以呈现包含 WebPartZoneBase 控件的 WebPart 区域的页眉。

(继承自 WebPartZoneBase)
ResolveAdapter()

获取负责呈现指定控件的控件适配器。

(继承自 Control)
ResolveClientUrl(String)

获取浏览器可以使用的 URL。

(继承自 Control)
ResolveUrl(String)

将 URL 转换为在请求客户端可用的 URL。

(继承自 Control)
RestoreWebPart(WebPart)

将被最小化的选定 WebPart 控件还原到正常状态。

(继承自 WebPartZoneBase)
SaveControlState()

保存将页面回发到服务器之后发生的所有服务器控件状态更改。

(继承自 Control)
SaveViewState()

将页面发布回服务器之后,保存已发生的所有视图状态的更改。

(继承自 WebPartZoneBase)
SetDesignModeState(IDictionary)

为控件设置设计时数据。

(继承自 Control)
SetRenderMethodDelegate(RenderMethod)

分配事件处理程序委托,以将服务器控件及其内容呈现到父控件中。

(继承自 Control)
SetTraceData(Object, Object)

使用跟踪数据键和跟踪数据值,为呈现数据的设计时追踪设置跟踪数据。

(继承自 Control)
SetTraceData(Object, Object, Object)

使用跟踪对象、跟踪数据键和跟踪数据值,为呈现数据的设计时追踪设置跟踪数据。

(继承自 Control)
ToString()

返回表示当前对象的字符串。

(继承自 Object)
TrackViewState()

开始对区域的视图状态更改的跟踪过程,以便将它们存储在一个 StateBag 对象中,并通过 ViewState 属性进行访问。

(继承自 WebPartZoneBase)

事件

CreateVerbs

在为从 WebPartZoneBase 类派生的区域创建谓词时发生。

(继承自 WebPartZoneBase)
DataBinding

当服务器控件绑定到数据源时发生。

(继承自 Control)
Disposed

当从内存释放服务器控件时发生,这是请求 ASP.NET 页时服务器控件生存期的最后阶段。

(继承自 Control)
Init

当服务器控件初始化时发生;初始化是控件生存期的第一步。

(继承自 Control)
Load

当服务器控件加载到 Page 对象中时发生。

(继承自 Control)
PreRender

在加载 Control 对象之后、呈现之前发生。

(继承自 Control)
Unload

当服务器控件从内存中卸载时发生。

(继承自 Control)

显式接口实现

IAttributeAccessor.GetAttribute(String)

获取具有指定名称的 Web 控件的特性。

(继承自 WebControl)
IAttributeAccessor.SetAttribute(String, String)

将 Web 控件的特性设置为指定的名称和值。

(继承自 WebControl)
ICompositeControlDesignerAccessor.RecreateChildControls()

启用设计器,以便在设计时环境中重新创建子控件的复合控件集合。

(继承自 CompositeControl)
IControlBuilderAccessor.ControlBuilder

有关此成员的说明,请参见 ControlBuilder

(继承自 Control)
IControlDesignerAccessor.GetDesignModeState()

有关此成员的说明,请参见 GetDesignModeState()

(继承自 Control)
IControlDesignerAccessor.SetDesignModeState(IDictionary)

有关此成员的说明,请参见 SetDesignModeState(IDictionary)

(继承自 Control)
IControlDesignerAccessor.SetOwnerControl(Control)

有关此成员的说明,请参见 SetOwnerControl(Control)

(继承自 Control)
IControlDesignerAccessor.UserData

有关此成员的说明,请参见 UserData

(继承自 Control)
IDataBindingsAccessor.DataBindings

有关此成员的说明,请参见 DataBindings

(继承自 Control)
IDataBindingsAccessor.HasDataBindings

有关此成员的说明,请参见 HasDataBindings

(继承自 Control)
IExpressionsAccessor.Expressions

有关此成员的说明,请参见 Expressions

(继承自 Control)
IExpressionsAccessor.HasExpressions

有关此成员的说明,请参见 HasExpressions

(继承自 Control)
IParserAccessor.AddParsedSubObject(Object)

有关此成员的说明,请参见 AddParsedSubObject(Object)

(继承自 Control)
IPostBackEventHandler.RaisePostBackEvent(String)

有关此成员的说明,请参见 RaisePostBackEvent(String)

(继承自 WebPartZoneBase)

扩展方法

FindDataSourceControl(Control)

返回与指定控件的数据控件关联的数据源。

FindFieldTemplate(Control, String)

返回指定控件的命名容器中指定列的字段模板。

FindMetaTable(Control)

返回包含数据控件的元表对象。

GetDefaultValues(INamingContainer)

为指定数据控件获取默认值的集合。

GetMetaTable(INamingContainer)

为指定数据控件获取表元数据。

SetMetaTable(INamingContainer, MetaTable)

为指定数据控件设置表元数据。

SetMetaTable(INamingContainer, MetaTable, IDictionary<String,Object>)

为指定数据控件设置表元数据和默认值映射。

SetMetaTable(INamingContainer, MetaTable, Object)

为指定数据控件设置表元数据和默认值映射。

TryGetMetaTable(INamingContainer, MetaTable)

确定表元数据是否可用。

EnableDynamicData(INamingContainer, Type)

为指定数据控件启用动态数据行为。

EnableDynamicData(INamingContainer, Type, IDictionary<String,Object>)

为指定数据控件启用动态数据行为。

EnableDynamicData(INamingContainer, Type, Object)

为指定数据控件启用动态数据行为。

适用于

另请参阅