若想再增加 XAML 對於圖片檔案顯示的速度,您可以使用 BitmapImage 物件,將圖片檔案讀入到 BitmapImage 物件內,接著,您就可以將這個 BitmapImage 物件 設定到 XAML Image Element的 Source 屬性上,如此,就可以直接顯示出該圖片。
StorageFile storageFile = await ApplicationData.Current.LocalFolder.GetFolderAsync(filename); IRandomAccessStream stream = await storageFile.OpenAsync(FileAccessMode.Read); BitmapImage bitmapImage = new BitmapImage(); await bitmapImage.SetSourceAsync(stream); this.XAMLImageElement.Source = bitmapImage ;
沒有留言:
張貼留言