Version: 2021.3
LanguageEnglish
  • C#

EditorWindow.RemoveNotification

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public void RemoveNotification();

Description

Stop showing notification message.

Notification message fades away automatically after some time. This function will remove it immediately.


Show a notification in an editor window.

// Simple example that shows a notification message
// that the user has typed.

using UnityEditor; using UnityEngine; using UnityEngine.Playables; using UnityEngine.UIElements;

public class NotificationWindow : EditorWindow {

string notification = "This is a notification"; [MenuItem("Window/UI Toolkit/NotificationWindow")]

public static void ShowExample() { NotificationWindow wnd = GetWindow<NotificationWindow>(); wnd.titleContent = new GUIContent("NotificationWindow"); }

public void CreateGUI() { // Each editor window contains a root VisualElement object VisualElement root = rootVisualElement;

// Create button to show notification Button showNotification = new Button(); showNotification.text = "Show!";

// Set up event handler showNotification.RegisterCallback<ClickEvent>((ClickEvent evt) => { this.ShowNotification(new GUIContent(notification)); });

root.Add(showNotification);

// Create button to remove notification Button removeNotification = new Button(); removeNotification.text = "Remove!";

// Set up event handler removeNotification.RegisterCallback<ClickEvent>((ClickEvent evt) => { this.RemoveNotification(); });

root.Add(removeNotification);

} }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961