uwp开发————换背景图片

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uwp开发————换背景图片相关的知识,希望对你有一定的参考价值。

原文:uwp开发————换背景图片

用后台代码来实现对容器背景的切换,用本地图片作为背景。

把需要的图片素材放到Assets文件夹下

前台xaml代码如下:

    <Grid x:Name="gd_backimage">
    </Grid>

就是起了个名字。。。

后台c#代码

ImageBrush imageBrush = new ImageBrush();
imageBrush.ImageSource = new BitmapImage(new Uri("ms-appx:///Assets/sunny.jpg", UriKind.Absolute));
gd_backimage.Background = imageBrush;



Ok。


以上是关于uwp开发————换背景图片的主要内容,如果未能解决你的问题,请参考以下文章

如何更改 windows uwp图标

UWP开发中两种网络图片缓存方法

记UWP开发——多线程操作/并发操作中的坑

UWP 后台保存图片

更改背景时如何更改 UWP 按钮前景 PointerOver 属性?

锁定屏幕(背景)通知 - UWP