码迷,mamicode.com
首页 > 其他好文 > 详细

创建自定义的右键菜单

时间:2019-03-29 20:41:46      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:鼠标   col   data   new   注意   路径   button   click   名称   

1.当前的控件的Rect

2.当前事件是鼠标按下事件,并且是按下的鼠标右键

3.右键点击位置在Rect内

 

 1 void MyContexMenu(Rect rect)
 2 {
 3     if(Event.current.type == EventType.MouseDown &&
 4         Event.current.button == 1 &&
 5         rect.Contains(Event.current.mousePosition))
 6     {
 7         GenericMenu menu = new GenericMenu();
 8         menu.AddItem(new GUIContent("Menu 1"), false, callback, null);
 9         menu.AddItem(new GUIContent("Menu 2/Sub Menu 1"), false, callback2);
10         menu.ShowAsContext();
11         Event.current.Use();
12     }
13 }

 

public void AddItem(GUIContent content, bool on, MenuFunction func);
public void AddItem(GUIContent content, bool on, MenuFunction2 func, object userData);

参数1:菜单的标题,支持路径

参数2:如果为true,则菜单名称前会打勾

参数3:回调方法

参数4:传递给回调方法的参数


**注意**

当EventType用ContexClick时,不起作用;

有时不起作用可能是点击事件没能传递下去,被上层的组件使用了当前的鼠标事件。

 

创建自定义的右键菜单

标签:鼠标   col   data   new   注意   路径   button   click   名称   

原文地址:https://www.cnblogs.com/stan-si/p/10623496.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!