我如何通过代码在我的应用程序中设置背景图像并保存设置

时间:2014-09-29 17:46:29

标签: windows-phone-7 windows-phone-8 windows-phone-8.1

如何通过代码在我的应用中设置背景图像并保存设置?

1 个答案:

答案 0 :(得分:0)

如果您将图片放在Assets文件夹中,例如,您可以随时使用此图片作为背景

<Grid>
    <Grid.Background>
        <ImageBrush ImageSource="/Assets/MyImage.png" />
    </Grid.Background>
</Grid>