ContextMenuService Class
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.
Provides the system implementation for displaying a ContextMenu.
public ref class ContextMenuService abstract sealed
public static class ContextMenuService
type ContextMenuService = class
Public Class ContextMenuService
- Inheritance
-
ContextMenuService
Examples
The following example assigns the same ContextMenu to two buttons and sets the HasDropShadow, Placement, PlacementRectangle, HorizontalOffset, and VerticalOffset properties to set the ContextMenu to different positions for each button.
<StackPanel>
<StackPanel.Resources>
<ContextMenu x:Key="myContextMenu">
<MenuItem Header="Item"/>
</ContextMenu>
</StackPanel.Resources>
<!--Both buttons use the same ContextMenu but use the
properties on ContextMenuService to position them
differently.-->
<Button ContextMenu="{StaticResource myContextMenu}"
ContextMenuService.HasDropShadow="False"
ContextMenuService.Placement="Relative"
ContextMenuService.HorizontalOffset="50"
ContextMenuService.VerticalOffset="-10">
button 1
</Button>
<Button ContextMenu="{StaticResource myContextMenu}"
ContextMenuService.HasDropShadow="True"
ContextMenuService.Placement="Right"
ContextMenuService.PlacementRectangle="0,0,30,30">
button 2
</Button>
</StackPanel>
The following example shows how to use the service to display a ContextMenu on a disabled button. Notice that you set the ShowOnDisabled property on the button that is the parent of the context menu.
<Button Height="30" Content="Disabled Button" IsEnabled="False"
ContextMenuService.ShowOnDisabled="True">
<Button.ContextMenu>
<ContextMenu>
<MenuItem Header="Item 1"/>
<MenuItem Header="Item 2"/>
<MenuItem Header="Item 3"/>
</ContextMenu>
</Button.ContextMenu>
</Button>
Remarks
The ContextMenuService class provides attached properties that can be used to specify the appearance and position of a context menu. Many of the properties in the ContextMenuService class are also defined by the ContextMenu. Sometimes it is more convenient to set the properties by using the ContextMenuService class than by setting the properties on a ContextMenu. For example, you can create a ContextMenu to be shared by multiple elements, but use the ContextMenuService class to specify a different position of the ContextMenu for each element. The following properties are defined by the ContextMenu and ContextMenuService classes. If any of these properties are set on both ContextMenu and the ContextMenuService, the property value from the ContextMenuService is used.
You can also use the ContextMenuService to display menus on disabled items.
Fields
ContextMenuClosingEvent |
Identifies the ContextMenuClosing routed event. |
ContextMenuOpeningEvent |
Identifies the ContextMenuOpening attached event. |
ContextMenuProperty |
Identifies the ContextMenu attached property. |
HasDropShadowProperty |
Identifies the HasDropShadow attached property. |
HorizontalOffsetProperty |
Identifies the HorizontalOffset attached property. |
IsEnabledProperty |
Identifies the IsEnabled attached property. |
PlacementProperty |
Identifies the Placement attached property. |
PlacementRectangleProperty |
Identifies the PlacementRectangle attached property. |
PlacementTargetProperty |
Identifies the PlacementTarget attached property. |
ShowOnDisabledProperty |
Identifies the ShowOnDisabled attached property. |
VerticalOffsetProperty |
Identifies the VerticalOffset attached property. |
Attached Properties
ContextMenu |
Gets or sets the content of a ContextMenu. |
HasDropShadow |
Gets or sets a value that indicates whether the ContextMenu has the drop shadow effect enabled. |
HorizontalOffset |
Gets or sets a value that indicates where along the x-direction to place the ContextMenu with respect to the parent control. |
IsEnabled |
Gets or sets a value that indicates whether the ContextMenu can be shown. |
Placement |
Gets or sets a value that specifies the placement of the ContextMenu relative to the PlacementTarget or PlacementRectangle. |
PlacementRectangle |
Gets or sets the area relative to which the context menu is positioned when it opens. |
PlacementTarget |
Gets or sets the parent control of the ContextMenu. |
ShowOnDisabled |
Gets or sets a value that indicates whether the ContextMenu should be shown when its parent is grayed out. |
VerticalOffset |
Gets or sets a value that indicates where along the y-direction to place the ContextMenu with respect to the parent control. |
Methods
Attached Events
ContextMenuClosing |
Occurs when the ContextMenu closes. |
ContextMenuOpening |
Occurs when the ContextMenu opens. |