如何在wp7中一起使用LowprofileImageLoader和Image Place holder?

时间:2012-12-20 12:32:10

标签: c# windows-phone-7

我们如何在wp7应用程序中一起使用LowprofileImageLoader和Image Place holder? 我已通过thisthis链接,但无法一起使用。 但人们在评论中说,他们可以通过在PlaceImage.cs中更改以下代码来使用它们:

if (null != _frontImage)

       {

           if (!System.ComponentModel.DesignerProperties.GetIsInDesignMode(this))

           {

               Delay.LowProfileImageLoader.SetUriSource(this, ((BitmapImage)this.Source).UriSource);

           }

       }   

但是当我这样做时,我得到了无效的参数错误。有人可以建议我如何解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

应该是:

if (null != _frontImage)
{
    if (!System.ComponentModel.DesignerProperties.GetIsInDesignMode(this))
    {
        Delay.LowProfileImageLoader.SetUriSource(_frontImage, ((BitmapImage) this.Source).UriSource);
    }
}

这是你要设置的_frontImage的UriSource。