FrameworkContentElement::ContextMenuClosing Event
Occurs just before any context menu on the element is closed.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
To suppress closing context menus, handlers of the event should mark it as handled.
To use this event as an EventTrigger in a style, you must reference the underlying service event identifier:
<EventTrigger RoutedEvent="ContextMenuService.ContextMenuClosing"> <!-- storyboard here ... --> </EventTrigger>
(This usage is required because the event implementation on FrameworkContentElement that exposes the underlying service event does not correctly map the ContextMenuClosing identifier for use in triggers).
The following example implements a handler that changes the cursor over a named region DisplayArea (not shown). The comment hints at a UIElement usage, but in fact this sample would be identical if DisplayArea were a FrameworkContentElement.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, 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.