private void OnNotify(object sender, CommandEventArgs e)
 {
     var notify = Notify;
     if (notify != null)
     {
         notify(this, e);
     }
 }
 void OnViewModelNotify(object sender, CommandEventArgs e)
 {
     lastSelection.Text = string.Format("ICommand: {0}", e.Message);
 }