gpt4 book ai didi

c# - 转换 URI -> 对象 -> 图像源

转载 作者:行者123 更新时间:2023-11-30 19:06:45 25 4
gpt4 key购买 nike

img = new Image()
{
Height = 150,
Stretch = System.Windows.Media.Stretch.Fill,
Width = 200
};
img.Source = (ImageSource) new ImageSourceConverter()
.ConvertFromString("/FirstDemo;component/Images/Hero.jpg");

经过数小时的研究,试图将图像分配给图像类。我遇到了这种分配图像的方式。我完全不知道为什么我这段代码不运行。虽然它没有得到任何编译器错误..奇怪。顺便说一句,这里是晚上 11 点 25 分

最佳答案

这样做:

img = new Image();
img.Height = 150;
img.Width = 200;
img.Stretch = Stretch.Fill;
img.Source = new BitmapImage(new Uri("/FirstDemo;component/Images/Hero.jpg"));

关于c# - 转换 URI -> 对象 -> 图像源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9170993/

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