/** * Display a message in the notifications bar */ public void DisplayStatusText(string text) { Gtk.Application.Invoke(delegate { messageId = notificationBar.Push(contextId, text); StatusMessage message = new StatusMessage(this, messageId, contextId); message.StartTimer(); }); }
/** * Display a message in the notifications bar */ public void DisplayStatusText(string text) { Gtk.Application.Invoke(delegate { messageId = notificationBar.Push(contextId, text); StatusMessage message = new StatusMessage(this,messageId, contextId); message.StartTimer(); }); }