Example #1
0
 public void RefreshPhotos()
 {
     if (_photos != null)
     {
         _photos.RefreshCurrentPage();
     }
 }
Example #2
0
        public void CreateAlbum()
        {
            var model = new CreateAlbumViewModel();

            model.CreateCompleted += (sender, e) =>
            {
                if (e.Error == null)
                {
                    _albums.RefreshCurrentPage();
                }
            };
            IoC.Get <IWindowManager>().ShowDialog(model);
        }
Example #3
0
 public void RefreshData()
 {
     if (_entries != null)
     {
         _entries.RefreshCurrentPage();
     }
 }