GenericWebPart.CreateEditorParts 方法

定义

返回自定义 EditorPart 控件的集合,这些控件可用于在 GenericWebPart 控件的子控件处于编辑模式时对其进行编辑。

public:
 override System::Web::UI::WebControls::WebParts::EditorPartCollection ^ CreateEditorParts();
public override System.Web.UI.WebControls.WebParts.EditorPartCollection CreateEditorParts ();
override this.CreateEditorParts : unit -> System.Web.UI.WebControls.WebParts.EditorPartCollection
Public Overrides Function CreateEditorParts () As EditorPartCollection

返回

一个 EditorPartCollection,其中包含与服务器控件关联的自定义 EditorPart 控件。

注解

CreateEditorParts 控件进入编辑显示模式时调用 方法。 此方法重写从 WebPart 类继承的基方法,因为对于 GenericWebPart 控件,正在编辑的是子控件,而不是 GenericWebPart 控件本身。 方法 CreateEditorParts 将子控件 IWebEditable 强制转换为 接口,以便编辑控件。

此重写的方法使不派生自 WebPart 类的服务器控件(包括 ASP.NET 服务器控件和自定义服务器控件)可以编辑为普通 WebPart 控件。

适用于

另请参阅