版本:Unity 6 (6000.0)
语言英语
  • C#

DropdownMenu.RemoveItemAt

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们确实会阅读用户提出的每项建议的更改内容,并在适当的情况下进行更新。

关闭

提交失败

由于某种原因,无法提交您建议的变更。请在几分钟后<a>重试</a>。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public void RemoveItemAt(int index);

参数

index 要移除的项的索引。

说明

移除索引处的菜单项。

using UnityEditor;
using UnityEngine;
using UnityEngine.UIElements;

public class ContextMenuWindow : EditorWindow { [MenuItem("My/Context Menu Window")] static void ShowMe() => GetWindow<ContextMenuWindow>();

void CreateGUI() { var contextMenuContainer = new VisualElement(); contextMenuContainer.style.flexGrow = 1; contextMenuContainer.AddManipulator(new ContextualMenuManipulator(e => { e.menu.AppendAction("My Action 1", a => Debug.Log("My Action 1 Works"), DropdownMenuAction.Status.Normal); e.menu.AppendAction("My Action 2", a => Debug.Log("My Action 2 Works"), DropdownMenuAction.Status.Normal); e.menu.AppendAction("My Action 3", a => Debug.Log("My Action 3 Works"), DropdownMenuAction.Status.Normal);

e.menu.RemoveItemAt(0); // Remove My Action 1 e.menu.RemoveItemAt(1); // Remove My Action 3 (item indices have shifted after first removal) }));

rootVisualElement.Add(contextMenuContainer); } }