WebPartManager.DisplayModeChanging Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs after a user clicks a verb on a Web page that begins the process of changing to a different display mode.
public:
event System::Web::UI::WebControls::WebParts::WebPartDisplayModeCancelEventHandler ^ DisplayModeChanging;
public event System.Web.UI.WebControls.WebParts.WebPartDisplayModeCancelEventHandler DisplayModeChanging;
member this.DisplayModeChanging : System.Web.UI.WebControls.WebParts.WebPartDisplayModeCancelEventHandler
Public Custom Event DisplayModeChanging As WebPartDisplayModeCancelEventHandler
Event Type
Remarks
Display modes are an integral part of Web Parts applications. When users switch to a different display mode on a Web page, the page will often take on a very different appearance, depending on the purpose of the new display mode. After a user initiates the process of changing to a new display mode by clicking a verb, you might want to make certain changes in the user interface (UI) by using the NewDisplayMode property to determine what the new display mode will be, and then changing various UI elements accordingly. A useful way to do this is to override the OnDisplayModeChanging method to customize the UI.
Note
For more information on display modes, see Web Parts Page Display Modes. For more information on consuming events, see How to: Consume Events in a Web Forms Application.