1. 程式人生 > >uwp開發————換背景圖片

uwp開發————換背景圖片

log 本地 api ebr sunny article 前臺 背景圖 切換

原文: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開發————換背景圖片