public void Handle(PlayFailedMessage message)
 {
 }
 public void Handle(PlayFailedMessage message)
 {
     EventAggregator.Publish(new StopMessage());
     NotificationService.Show(new DialogNotificationOptions
                                  {
                                      Message = "Could not play item:\r\n" + message.ErrorMessage
                                  });
 }