0

wp7アプリでLowprofileImageLoaderとImage Place holderを一緒に使用するにはどうすればよいですか? thisthis link を使用しましたが、一緒に使用できません。しかし、人々は PlaceImage.cs の次のコードを変更することで両方を使用できるとコメントで述べています。

if (null != _frontImage)

       {

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

           {

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

           }

       }   

しかし、そうすると、無効な引数エラーが発生しました。誰かがこの問題を解決する方法を教えてもらえますか?

4

1 に答える 1

0

そのはず:

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

設定するのは _frontImage の UriSource です。

于 2013-04-15T11:27:34.150 に答える