示例#1
0
 private async void DispatchNotification(ViewModelNotification type, object arg)
 {
     if (type == ViewModelNotification.ShowUser)
     {
         await ShowUser((string)arg);
     }
 }
 public void Send(ViewModelNotification type, object args)
 {
     OnNotfication(type, args);
 }