我们如何在wp7应用程序中一起使用LowprofileImageLoader和Image Place holder? 我已通过this和this链接,但无法一起使用。 但人们在评论中说,他们可以通过在PlaceImage.cs中更改以下代码来使用它们:
if (null != _frontImage)
{
if (!System.ComponentModel.DesignerProperties.GetIsInDesignMode(this))
{
Delay.LowProfileImageLoader.SetUriSource(this, ((BitmapImage)this.Source).UriSource);
}
}
但是当我这样做时,我得到了无效的参数错误。有人可以建议我如何解决这个问题吗?
答案 0 :(得分:0)
应该是:
if (null != _frontImage)
{
if (!System.ComponentModel.DesignerProperties.GetIsInDesignMode(this))
{
Delay.LowProfileImageLoader.SetUriSource(_frontImage, ((BitmapImage) this.Source).UriSource);
}
}
这是你要设置的_frontImage的UriSource。