Exemple #1
0
        private void NewGist()
        {
            var ctrl = new CreateGistViewController();

            ctrl.Created = (newGist) => ((AccountGistsViewModel)ViewModel).Gists.Items.Insert(0, newGist);
            NavigationController.PushViewController(ctrl, true);
        }
Exemple #2
0
 private void NewGist()
 {
     var ctrl = new CreateGistViewController();
     ctrl.Created = newGist =>ViewModel.Gists.Items.Insert(0, newGist);
     NavigationController.PushViewController(ctrl, true);
 }
 public EditSource(CreateGistViewController dvc) 
     : base (dvc)
 {
     _parent = dvc;
 }
 public EditSource(CreateGistViewController dvc)
     : base(dvc)
 {
     _parent = dvc;
 }