0

我正在尝试在我的 VS2010 项目的图像文件夹中的背景图像。我已阅读文档并尝试了多种方法,包括以下但无法使其正常工作:

        ImageBrush bg2 = new ImageBrush();
        bg2.ImageSource = new BitmapImage(new Uri(@"/FooApplication1;component/Images/bg1.png"));

        ImageBrush bg1 = new ImageBrush();
        bg1.ImageSource = new BitmapImage(new Uri(BaseUriHelper.GetBaseUri(this), "/FooApplication;component/Images/bg1.png"));

有谁知道出了什么问题?

4

1 回答 1

0

我认为 URI 应该是这样的:

"pack://application:,,,/Images/bg1.png"

你读过这篇关于 URI 的文章吗?

于 2011-03-26T00:55:41.313 回答