gpt4 book ai didi

c# - 在代码后面更改图像源 - Wpf

转载 作者:IT王子 更新时间:2023-10-29 04:00:25 24 4
gpt4 key购买 nike

我需要动态设置图像源,请注意我的图像在网络上的某个地方,这是我的代码

BitmapImage logo = new BitmapImage();
logo.BeginInit();
logo.UriSource = new Uri(@"pack://application:,,,\\myserver\\folder1\\Customer Data\\sample.png");
logo.EndInit(); // Getting the exception here
ImageViewer1.Source = logo;

异常(exception):

The URI prefix is not recognized

最佳答案

以上解决方案都不适合我。但这确实:

myImage.Source = new BitmapImage(new Uri(@"/Images/foo.png", UriKind.Relative));

关于c# - 在代码后面更改图像源 - Wpf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3787137/

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