Hi,
when I call "introduce change notification" a wrong codeline is inserted.
Visual BasicPublic Property DefinitionString As String
Get
Return _definitionString
End Get
Set(ByVal Value As String)
If _definitionString Is Value Then
Return
End If
_definitionString = Value
'This part is inserted --> wrong argument
OnPropertyChanged(Me, New PropertyChangedEventArgs(DefinitionString))
'This part should be inserted
OnPropertyChanged(Me, New PropertyChangedEventArgs("DefinitionString"))
End Set
End Property
Hi Thomas,
Thank you for the code snippet.
We faced the same problem in the past and already fixed it. Download and install the build with the fix from the current ticket to get rid of the problem.