找回密码
 立即注册

QQ登录

只需一步,快速开始

cy_liuquan

银牌会员

5

主题

14

帖子

3853

积分

银牌会员

积分
3853

活字格认证

最新发帖
cy_liuquan
银牌会员   /  发表于:2014-12-1 13:51  /   查看:4806  /  回复:1
C1TabControl标签是否有右键功能,类似下图:

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x

1 个回复

倒序浏览
Alice
社区贡献组   /  发表于:2014-12-1 16:42:00
沙发
回复 1楼cy_liuquan的帖子

可以给C1TabControl的TabItem添加右键,XMAL代码如下所示:   
  1. <c1:C1TabItem Header="TabItem">               
  2.                 <c1:C1TabItem.ContextMenu>
  3.                 <ContextMenu  >
  4.                     <MenuItem Header="Red" Name="testRed" />
  5.                     <MenuItem Header="Blue" Name="blue" />
  6.                     <MenuItem Header="Yellow" Name="yellow" />
  7.                 </ContextMenu>
  8.                 </c1:C1TabItem.ContextMenu>
  9.             </c1:C1TabItem>
  10.             <c1:C1TabItem Name="Item2" Header="Item2" >
  11.                 <c1:C1TabItem.ContextMenu >
  12.                     <ContextMenu >
  13.                         <MenuItem Header="1" Name="a" />
  14.                         <MenuItem Header="2" Name="b" />
  15.                         <MenuItem Header="3" Name="c"/>
  16.                     </ContextMenu>
  17.                 </c1:C1TabItem.ContextMenu>
  18.             </c1:C1TabItem>
复制代码

运行时,ContextMenu可以在你图上的位置弹出。
请点击评分,对我的服务做出评价!  5分为非常满意!

葡萄城控件服务团队

官方网站: http://www.gcpowertools.com.cn
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部