gpt4 book ai didi

c# - 在 C# 中将字符串设置为图像源

转载 作者:太空狗 更新时间:2023-10-29 20:53:30 24 4
gpt4 key购买 nike

好吧,我已经查找了几种方法来在我的 Windows Phone 7 应用程序中修复此问题,但我似乎找不到任何有效的方法。让我感到困惑的是,我以前做过这样的事情,没有任何问题,所以我不确定为什么它不起作用。导致我出现问题的代码是这样的:
如果(appSettings.Contains(“图像”)) myImage.Source = (string)appSettings["image"]; 别的 myImage.Source = "default.jpg";

我得到的错误是这个

Cannot implicitly convert type 'string' to 'System.Windows.Media.ImageSource.

这让我感到困惑的原因是因为我这样做了 Twitter app tutorial ,其中您将图像源直接绑定(bind)到一个字符串。那么我能做些什么来解决这个问题呢?

最佳答案

从代码中执行此操作时,您需要指定一个 ImageSource 而不是一个字符串:

Uri uri = new Uri("...", UriKind.Absolute); 
ImageSource imgSource = new BitmapImage(uri);
myImage.Source = imgSource;

关于c# - 在 C# 中将字符串设置为图像源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4567023/

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