我正在尝试在我的 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"));
有谁知道出了什么问题?