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开发————换背景图片的主要内容,如果未能解决你的问题,请参考以下文章