0

一般来说,我是 xaml 和 wpf 的新手。我正在尝试使图像出现在用户控件中,这是我使用的代码:

   BitmapImage captchaSource = new BitmapImage();
                        captchaSource.BeginInit();
                        captchaSource.UriSource = new Uri(_captchaData.ImgUrl);
                        captchaSource.EndInit();
                        captchaImg.Source = captchaSource;

这是用户界面代码:

<Image Height="105" HorizontalAlignment="Left" Margin="12,38,0,0" Name="captchaImg" Stretch="Fill" VerticalAlignment="Top" Width="276" Grid.ColumnSpan="2" />

但什么也没有发生。没有图像出现。这是 _captchaData.ImgUrl http://www.google.ro/images/srpr/logo3w.png中的网址

有谁知道这是为什么?

4

1 回答 1

1

上一个问题

“WebURL 不能作为 BitmapImage 的 UriSource 属性的源提供。如果是 weburl,则需要在本地下载该图像并将该路径绑定到 UriSource。”

于 2012-05-08T07:06:52.240 回答