ContextMenuService.ShowOnDisabled Attached Property

Definition

Gets or sets a value that indicates whether the ContextMenu should be shown when its parent is grayed out.

see GetShowOnDisabled, and SetShowOnDisabled
see GetShowOnDisabled, and SetShowOnDisabled
see GetShowOnDisabled, and SetShowOnDisabled

Examples

This example creates and displays a ContextMenu on a disabled button.

<Button Height="30" Content="Disabled Button" IsEnabled="False" 
        ContextMenuService.ShowOnDisabled="True">
  <Button.ContextMenu>
    <ContextMenu>
      <MenuItem Header="Edit">
        <MenuItem Header="Cut"/>
        <MenuItem Header="Copy"/>
        <MenuItem Header="Paste"/>
        <Separator/>
        <MenuItem Header="Context Menu item with ToolTip">
          <MenuItem.ToolTip>
            <ToolTip>
              Some information.
            </ToolTip>
          </MenuItem.ToolTip>
        </MenuItem>
      </MenuItem>
    </ContextMenu>
  </Button.ContextMenu>
</Button>

Remarks

Dependency Property Information

Identifier field ShowOnDisabledProperty
Metadata properties set to true None

Applies to

See also