我正在WinForms应用程序一侧构建一组WPF控件,以便最终可以将整个项目转换为WPF。我正在使用WinForms ElementHost模块并在其中设置我的WPF控件。
这就是我的问题,我已经通过ElementHost在WinForms应用程序上托管了过多的WPF控件。然而,我遇到了这个控件,它告诉我:
Error setting value'Assembly.MyCustomControl' to property 'Child'. Details:
Could not load type 'Assembly.MyCustomControl' from assembly 'Assembly'......再一次,我以同样的方式将其他几个控件加载到这个项目中。承载控件的库中绝对没有错误。我在这里感到很困惑。
在我尝试将ElementHost设置为该控件后,此错误也最终显示在WinForms设计器上。
at System.Reflection.RuntimeAssembly.GetType(RuntimeAssembly assembly, String name, Boolean throwOnError, Boolean ignoreCase, ObjectHandleOnStack type)
at System.Reflection.RuntimeAssembly.GetType(String name, Boolean throwOnError, Boolean ignoreCase)
at System.UnitySerializationHolder.GetRealObject(StreamingContext context)
at System.ComponentModel.ReflectPropertyDescriptor.SetValue(Object component, Object value)
at System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializePropertyAssignStatement(IDesignerSerializationManager manager, CodeAssignStatement statement, CodePropertyReferenceExpression propertyReferenceEx, Boolean reportError)
at System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeAssignStatement(IDesignerSerializationManager manager, CodeAssignStatement statement)
at System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(IDesignerSerializationManager manager, CodeStatement statement) 编辑
我稍后将此作为答案发布,但重新启动Visual Studio解决了这个问题...
发布于 2012-06-08 03:39:18
您只需重新启动Visual Studio。
https://stackoverflow.com/questions/9875125
复制相似问题