资源图片的绝对UriSource
我有一个 WPF 项目。如果我将图像存储在 {ProjectRoot}\Images\image.png 中,并将其编译为资源,那么我可以通过 BitmapImage UriSource="Images/image.png" 作为 BitmapImage 从 xaml(此 xaml 位于根目录)访问它。 png”
。但是,如果我将 xaml 移动到另一个文件夹(例如 {ProjectRoot}\Xamls),现在我必须使用 BitmapImage UriSource="../Images/image.png"
。有没有办法指定绝对项目路径,以便我可以使用相同的路径引用它们,而不管 xaml 的位置如何?
I have a WPF project. If I store image in {ProjectRoot}\Images\image.png, and compile it as Resource then I can access it from a xaml (this xaml is located at Root) as BitmapImage by BitmapImage UriSource="Images/image.png"
. But if I move the xaml to another folder, say {ProjectRoot}\Xamls, now I have to use BitmapImage UriSource="../Images/image.png"
. Is there a way to specify an absolute project path, so that I can refer to them with the same path regardless of the location of the xaml?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用此语法来通过同一项目内的绝对路径进行引用,也可以引用其他项目中的文件:
此处“MyAssemblyName”是项目/dll/exe 名称,“component”表示项目根目录。
You can use this syntax both to reference by an absolute path inside the same project, or reference files in other projects:
Here "MyAssemblyName" is the project/dll/exe name and "component" indicates the project root.
查看在 WPF 中打包 URI
Take a look at Pack URIs in WPF