gpt4 book ai didi

c# - 在 Windows 8 Metro C# 中显示 StorageFile

转载 作者:太空狗 更新时间:2023-10-30 00:11:23 26 4
gpt4 key购买 nike

我想在 Assets 的 UI 上显示图像文件。我设法将该项目存储为 StorageFile .我怎样才能显示它?我试图在 XAML 中显示它 <Image>标签的来源。是否可以隐藏StorageFileImage

string path = @"Assets\mypicture.png";
StorageFile file = await InstallationFolder.GetFileAsync(path);

最佳答案

试试这个功能

public async Task<Image> GetImageAsync(StorageFile storageFile)
{
BitmapImage bitmapImage = new BitmapImage();
FileRandomAccessStream stream = (FileRandomAccessStream)await storageFile.OpenAsync(FileAccessMode.Read);
bitmapImage.SetSource(stream);
Image image = new Image();
image.Source = bitmapImage;
return image;
}

关于c# - 在 Windows 8 Metro C# 中显示 StorageFile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12660077/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com