/// <summary>
 /// TestMe called when the user clicked the menu item.
 /// </summary>
 public void Clicked()
 {
     if (command != null)
     {
         try
         {
             command.Execute();
         }
         catch (Exception ex)
         {
             messagesService.DisplayError(ex);
         }
     }
 }