我正在开发一个WP7的应用程序,我对图像控制有一个奇怪的问题,它没有显示它绑定到的图像。
我已经在很多方面尝试了它,但这种方式的事件(最天真的事情)不起作用:
在xaml中我有一个名为img的Image控件,这就是我在后面的代码中所做的
public MainPage()
{
InitializeComponent();
img.Source = new BitmapImage(new Uri (@"http://img11.imageshack.us/img11/5365/photovnj.jpg", UriKind.Absolute));
}
</code>
似乎很简单,不工作...... 请帮忙!
答案 0 :(得分:2)
此代码适用于我,假设您在xaml中将img
声明为Image
。
如果没有,我建议您在模拟器或设备中运行的应用程序与互联网存在连接问题。
这是我写的代码。
image1.Source = new BitmapImage(new Uri(@"http://img11.imageshack.us/img11/5365/photovnj.jpg", UriKind.Absolute));