Windows phone 8 在WP 8.1中创建位图图像背景

Windows phone 8 在WP 8.1中创建位图图像背景,windows-phone-8,windows-runtime,bitmapimage,Windows Phone 8,Windows Runtime,Bitmapimage,在WP8中,BitmapCreateOptions包括值背景创建,这有助于在背景中创建图像。我和联系人一起工作,有很多头像,所以有必要提高性能。 但是,在Windows runtime/WP8.1中,没有后台创建。请帮帮我 位图.CreateOptions= BitmapCreateOptions.BackgroundCreation 位图.SetSource(源) 您确定为imagesource绑定指定了正确的model属性吗? <Ellipse Width="70"

在WP8中,BitmapCreateOptions包括值背景创建,这有助于在背景中创建图像。我和联系人一起工作,有很多头像,所以有必要提高性能。 但是,在Windows runtime/WP8.1中,没有后台创建。请帮帮我

位图.CreateOptions= BitmapCreateOptions.BackgroundCreation

位图.SetSource(源)


您确定为imagesource绑定指定了正确的model属性吗?
<Ellipse Width="70" Height="70">
    <Ellipse.Fill>
        <ImageBrush ImageSource="{Binding bitmap}" /> 
    </Ellipse.Fill>
</Ellipse>