public NotificationElement Show(DialogType type, string message, int?time = null) { if (!EnsureDialog()) { return(null); } var not = new NotificationElement(type, message, _notificationsCollection, time); not.BeginEnterAnimation(); return(not); }
public void ManualUpdate(NotificationElement notification, double percentage) { throw new System.NotImplementedException(); }
public void Hide(NotificationElement notification) { notification?.Hide(); }