Error message: Provide value on 'System.
Windows
.
Baml2006
.
Type
Converter
Markup
Extens
ion
'
Reason: forget to add image source file to project's resource.
在
wpf
中,有时会遇到如下错误:
System.
Windows
.
Markup
.XamlParseExcept
ion
:““在“System.
Windows
.
Baml2006
.
Type
Converter
Markup
Extens
ion
”上
提供
值时
引发
了
异常
。”,行号为“2509”,行位置为“47”。”
IOExcept
ion
: 找不到资源“images/你的图片.png”。
这种原因,是因为图片作为资源引用,还是作为文件引用。
选择该图片,右键,找到“属性”菜单,在“先成操作中”选择“资源”即可!
AcMgd.dll
均加载上,然后编写好代码以后点击Debug后出现以下提示:
System.
Windows
.
Markup
.XamlParseExcept
ion
was unhandled
Message=Provide value on 'System.
Windows
.
Markup
.Stati
解决方法:
xxx-》 图片属性-》生产操作改为 Resource。ImageSource 改为类似:
ImageSource="/你的程序集名称;component/Resources/xxx.png";
System.
Windows
.
Markup
.XamlParseExcept
ion
:““在“System.
Windows
.
Baml2006
.
Type
Converter
Markup
Extens
ion
”上
提供
值时
引发
了
异常
。”,行号为“15”,行位置为“14”。”
问题:一定要把图片放在跟项目同级文件才能运行,放在images文件夹就不能运行!
解决方法: