Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 StorageFile 和位图图像保存并检索到 Sqlite 数据库中。然后稍后检索它们。和 bitmapimage 将来自该文件的缩略图。提前谢谢
正如我已经告诉过的,将 StorageFile 和 BitMapIamge 保存到数据库不是一个好主意。如果图像文件很大,数据库可能会阻塞。而是将图像的路径保存到数据库。您可以像这样使用 Path 加载图像
myImage.Source = new BitmapImage(new Uri( "ms-appx:///Assets/WorldCupFlags/Sri_Lanka.png", UriKind.Absolute));
而 StorageFile 你不能将它存储到数据库中。