WPF窗口背景图像中的URI路径

时间:2018-05-05 17:32:28

标签: wpf uri

我正在尝试为WPF窗口分配背景。 我在bin \ debug \ StoredData \ wallpaper.jpg中有一个.jpg (我想从那里获得.jpg)。

我将此代码放在.cs文件(新创建的文件)中:

     InitializeComponent();
        ImageBrush myBrush = new ImageBrush();
        myBrush.ImageSource =
             new BitmapImage(new Uri("\\StoredData\\login_wallpaper.jpg", UriKind.Absolute));
        this.Background = myBrush;

但我收到“无效的URI:无法确定URI的格式”消息。 我应该改变什么?

1 个答案:

答案 0 :(得分:0)

\StoredData\login_wallpaper.jpg是一个相对URI。您可以将UriKind更改为UriKind.Relative,也可以输入绝对URI,具体取决于您想要的行为。