异常信息
InnerExceptionType: System.Xaml.XamlParseException
InnerExceptionMessage: 类型引用无法找到名为“{clr-namespace:Cn.XXX.Controls}IconButton”的类型。
InnerExceptionSource: System.Xaml
InnerExceptionTargetSite: ServiceProvider_Resolve
解决办法:
在样式文件中的xmlns声明写完整的
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:Cn.XXX.Controls;assembly=Cn.XXX.Controls"
xmlns:system="clr-namespace:System;assembly=mscorlib">