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

EditorWindow.ShowPopup

建议更改

成功!

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

关闭

提交失败

由于某些原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public void ShowPopup();

描述

使用弹出式框架显示编辑器窗口。

这意味着窗口没有边框,也不能拖动。它旨在在现有窗口中显示类似弹出菜单的内容。



使用此方法打开窗口不会赋予其弹出窗口的功能,而只提供样式。要获得完整的弹出窗口功能(例如,当窗口失去焦点时自动关闭),请使用PopupWindow

using UnityEngine;
using UnityEditor;
using UnityEngine.UIElements;

public class ShowPopupExample : EditorWindow
{
    [MenuItem("Examples/ShowPopup Example")]
    static void Init()
    {
        ShowPopupExample window = ScriptableObject.CreateInstance<ShowPopupExample>();
        window.position = new Rect(Screen.width / 2, Screen.height / 2, 250, 150);
        window.ShowPopup();
    }

    void CreateGUI()
    {
        var label = new Label("This is an example of EditorWindow.ShowPopup");
        rootVisualElement.Add(label);

        var button = new Button();
        button.text = "Agree!";
        button.clicked += () => this.Close();
        rootVisualElement.Add(button);
    }
}