WPF下实现右键菜单

1.将contentmenu写入资源

<Window.Resources>
    <ContextMenu x:Key="ContextMenu">
        <MenuItem Header="MenuItem1" Click="MenuItem1_Click" />
    </ContextMenu>...
</Window.Resources>

2.使用ContextMenu

<Grid ContextMenu="{StaticResource ContextMenu}" />

3.写响应函数

private void MenuItem1_Click(object sender, RoutedEventArgs e)

{

....

}

4.完成了。

你可能感兴趣的:(object,header,WPF)