0

我想使用 C# 更改 Windows 商店应用程序的背景图像。我正在寻找类似于以下伪代码的背景图像:

This.Background.ImageSource= "dracula-128.png";
4

1 回答 1

2

一种方法是创建一个ImageBrush,设置其ImageSource属性,然后将其分配给背景。(代码根据评论更新)

//BitmapImage class is within this namespace
using Windows.UI.Xaml.Media.Imaging;    

ImageBrush ib = new ImageBrush();
ib.ImageSource = new BitmapImage(new Uri(@"ms-appx:///dracula-128.png", UriKind.RelativeOrAbsolute));   
this.Background = ib;
于 2013-04-19T20:08:25.397 回答