public MainFrameViewModel(UserInformation currentUser)
 {
     PathNavigateCommand  = new AsyncCommand(PathNavigate, CanPathNavigate);
     UserInformation      = new UserInformationViewModel(currentUser);
     MainContainerContent = new FileListViewModel();
     //FileList.NavigateByPathAsync("/");
 }
Пример #2
0
 public MainFrameViewModel(UserInformation currentUser)
 {
     PathNavigateCommand  = new DependencyCommand(PathNavigate, DependencyCommand.AlwaysCan);
     UserInformation      = new UserInformationViewModel(currentUser);
     MainContainerContent = new FileListViewModel();
 }