0
我試圖從Web加載一個類型爲.ICO的文件,並將它用作我的Windows Phone中的圖像。但是,當我嘗試設置BitmapImage的來源時出現錯誤。這裏是我的代碼:從Web上加載.ico並轉換爲BitmapSource
WebClient client = new WebClient();
client.OpenReadCompleted += (s, e) => {
if (e.Cancelled) return;
if (null != e.Error) throw e.Error;
BitmapImage image = new BitmapImage();
image.SetSource(e.Result);
this.Favicon = image;
};
client.OpenReadAsync(new Uri(@"http://mysite/myimage.ico", UriKind.RelativeOrAbsolute));
BitmapImage是否支持「ico」文件?如何將「ico」轉換爲支持的BitmapImage文件。
解決方案必須在Windows Phone 7
韓國社交協會
恥辱,它不支持真正(http://forums.create.msdn.com/forums/p/73618/449043.aspx#449043),這個實現並不完美...我使用www.getfavicon.org的服務... – 2011-01-26 21:09:50