我有一个列表框中的项目列表。当所选项目更改时,将显示其详细信息:我将DataContext
aGrid
设置为该对象,并插入一个显示详细信息的特定 UserControl。我正在FatalExecutionEngineError
了解这些用户控件的 InitializeComponent()。
The runtime has encountered a fatal error. The address of the error was at 0x6d8c104e, on thread 0xcf4. The error code is 0xc0000005. This error may be a bug in the CLR or in the unsafe or non-verifiable portions of user code. Common sources of this bug include user marshaling errors for COM-interop or PInvoke, which may corrupt the stack.
当我删除使用值转换的绑定时,错误消失了。某些转换器似乎不会导致异常...此外,仅当我为要显示的每个项目创建用户控件的新实例时才会出现错误,但在重新使用在应用程序启动时创建的相同用户控件时不会出现错误-向上。IValueConverter 是否有任何已知问题?如果是这样,我不应该在我的应用程序中使用它们吗?我在哪里可以找到消费者预览版的错误列表,这样我就不会浪费我的时间来寻找将在以后的版本中修复的错误的变通办法?