使用弹出式框架显示编辑器窗口。
这意味着窗口没有边框,也不能拖动。它旨在在现有窗口中显示类似弹出菜单的内容。
使用此方法打开窗口不会赋予其弹出窗口的功能,而只提供样式。要获得完整的弹出窗口功能(例如,当窗口失去焦点时自动关闭),请使用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); } }