Exemplo n.º 1
0
 private async Task ShowPrivateMessageFolder(CommonDataModel item)
 {
     ShowCurrentFolderView();
     context.SetCurrentFolder(item as PrivateMessageGroup);
     isSyncing = true;
     sync.RaiseCanExecuteChanged();
     await context.OnSelectedAsync(this, IProgressFactory.GenerateProgressToken());
     isSyncing = false;
     sync.RaiseCanExecuteChanged();
 }
Exemplo n.º 2
0
 private void ShowPrivateMessage(CommonDataModel item)
 {
     (item as IContentViewModel).OnSelectedAsync(this, IProgressFactory.GenerateProgressToken());
 }