public void ShowInformation(string title, string message, MessageNotificationIcon icon) { var messageNotification = new MessageNotification(title, message, icon, TimeSpan.FromSeconds(4)); messageNotification.Close += MessageNotification_Close; Notifications.Add(messageNotification); IsVisible = true; }