Пример #1
0
        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);
        }
Пример #2
0
 public void ManualUpdate(NotificationElement notification, double percentage)
 {
     throw new System.NotImplementedException();
 }
Пример #3
0
 public void Hide(NotificationElement notification)
 {
     notification?.Hide();
 }