GenericWebPart.CreateEditorParts 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回自定义 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 控件。