嗨,我有文件夹访问图像的问题。我的项目有这个文件夹结构:
在SomeView.xaml中,我想将some.ico设置为Image控件的源。
这样的事情:
<Image Source="images\icons\menu\some.ico" Height="20"/>
但它搜索ico文件ine Views/Images/Icons/some.ico
答案 0 :(得分:1)
使用绝对URI而不是相对URI,例如:
"pack://application:,,,/YourAssemblyName;Component/images/icons/menu/some.ico"
样式问题,但使用正斜杠。地址是URI,而不是Windows文件路径。