crash in ComboBox coerce (not my code)

前端 未结 5 1007
臣服心动
臣服心动 2020-12-20 13:20

I got the stack trace below reported from a customer. I don\'t know how to reproduce this. My WPF application has a fair number of ComboBoxes; I\'m not sure how to determine

5条回答
  •  一整个雨季
    2020-12-20 13:54

    What eventually resolved this for us was to override the event causing the issue:

    Protected Overrides Sub OnIsKeyboardFocusWithinChanged(e As DependencyPropertyChangedEventArgs)
        Try
            'GW 2015-09-20 Added this override to prevent windows 10 crashes on comboboxes within forms within datagrids
    
        Catch ex As Exception
        End Try
    End Sub
    

提交回复
热议问题