我想使用 C# 更改 Windows 商店应用程序的背景图像。我正在寻找类似于以下伪代码的背景图像:
This.Background.ImageSource= "dracula-128.png";
我想使用 C# 更改 Windows 商店应用程序的背景图像。我正在寻找类似于以下伪代码的背景图像:
This.Background.ImageSource= "dracula-128.png";
一种方法是创建一个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;