Silverlight中右键菜单

xaml页面

<Grid x:Name="LayoutRoot" Background="White" MouseRightButtonDown="LayoutRoot_MouseRightButtonDown">
        <Button Content="右键菜单" Height="23" HorizontalAlignment="Left" Margin="10,10,0,0" Name="btnRight" VerticalAlignment="Top" Width="75" />
    </Grid>
View Code

xaml.cs代码

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Net;
 5 using System.Windows;
 6 using System.Windows.Controls;
 7 using System.Windows.Documents;
 8 using System.Windows.Input;
 9 using System.Windows.Media;
10 using System.Windows.Media.Animation;
11 using System.Windows.Shapes;
12 
13 namespace RightMenu
14 {
15     public partial class MainPage : UserControl
16     {
17         public MainPage()
18         {
19             InitializeComponent();
20 
21             BindMenu();
22         }
23 
24         private void BindMenu()
25         {
26             ContextMenu cm = new ContextMenu();//新建右键菜单
27             MenuItem mi = new MenuItem();//新建右键菜单项
28             mi.Header = "菜单项";
29             mi.Click += new RoutedEventHandler(mi_Click);//为菜单项注册事件
30             cm.Items.Add(mi);
31             ContextMenuService.SetContextMenu(btnRight, cm);//为控件绑定右键菜单
32         }
33 
34         void mi_Click(object sender, RoutedEventArgs e)
35         {
36             MessageBox.Show("右键菜单事件");
37         }
38 
39 
40 
41         private void LayoutRoot_MouseRightButtonDown(object sender, MouseButtonEventArgs e)
42         {
43             e.Handled = true; //屏蔽默认的右键菜单
44         }
45     }
46 }
View Code

 

转载于:https://www.cnblogs.com/zxbzl/archive/2013/06/05/3118424.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值