2012-05-08 82 views
0

我是xaml和wpf的新手。 我試圖做一個形象出現在用戶的控制,這是我使用的代碼:xaml圖片沒有顯示。源

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

這是UI代碼:

<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

有沒有人有任何想法,爲什麼這是?

+0

[WPF Image UriSource and Data Binding using http:\\ URL]可能出現重複(http://stackoverflow.com/questions/3148163/wpf-image-urisource-and-data-binding-using-http -url) – cimmanon

回答

1

previous question

「WEBURL不能設置成UriSource的 財產的BitmapImage源如果你需要下載圖像本地 並綁定該路徑來UriSource WEBURL。」