How to create a right-click context menu for a button in WPF

21,437

Here is a sample:

<Button Content="button" Name="btn" Width="100">
    <Button.ContextMenu>
        <ContextMenu>
            <MenuItem Header="Cut"/>
            <MenuItem Header="Copy"/>
            <MenuItem Header="Paste"/>
        </ContextMenu>
    </Button.ContextMenu>
</Button>

enter image description here

Share:
21,437
RKM
Author by

RKM

Updated on April 22, 2020

Comments

  • RKM
    RKM about 4 years

    i know how to create a left-click context menu for a button, but I am not too sure how to do it for a right click? (i.e. how to specify that the context menu should appear on a right-click, not a left click).

    Many thanks.