EditorZoneBase::OnSelectedWebPartChanged Method
Raises the SelectedWebPartChanged event and sets the EditorParts collection to nullptr in the zone in preparation for a WebPart control to enter or exit edit mode.
Assembly: System.Web (in System.Web.dll)
protected: virtual void OnSelectedWebPartChanged( Object^ sender, WebPartEventArgs^ e ) override
Parameters
- sender
- Type: System::Object
An Object that raises the SelectedWebPartChanged event.
- e
- Type: System.Web.UI.WebControls.WebParts::WebPartEventArgs
A WebPartDisplayModeEventArgs that contains the event data.
The OnSelectedWebPartChanged method enables you to provide custom handling for the event that occurs when an individual WebPart control enters or exits edit mode.
Notes to InheritorsThe OnSelectedWebPartChanged method can be overridden or called programmatically in a custom editor zone control that inherits from the EditorZoneBase class or the EditorZone class.
The following code example demonstrates how to override the OnSelectedWebPartChanged method in a derived class. For the full code required to run the example, see the Example section of the EditorZoneBase class overview topic.
The custom editor zone derives from the EditorZone class so that it can be used with a zone template in the declarative markup of the Web page. The custom class overrides the OnSelectedWebPartChanged method, setting the background color of the specific control that is being edited, and then calls the base method.
When you load the page in a browser, you can select Edit Mode in the drop-down list control to switch to edit mode. You can click the verbs menu (the down arrow) in the title bar of one of the controls, and click Edit to edit the selected control. When the EditorZone and editing user interface (UI) are visible, you can see that the selected control has the background color specified in the code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.