Example #1
0
        public async Task RetrieveFullImage()
        {
            if (fullImage == null)
            {
                fullImage = await ImageController.FileInfoToBitmapSource(fileInfo);

                NotifyPropertyChanged("fullImage");
            }
        }
Example #2
0
        public async Task RetrieveThumb()
        {
            if (thumb == null)
            {
                thumb = await ImageController.FileInfoToThumbnail(fileInfo);

                NotifyPropertyChanged("thumb");
            }
        }