Hi,
I can see an issue in the code provider in this build. When I use a template (pi) the the following code is inserted on my machine:
Visual BasicProperty ColumnWidth As Integer
Get
Return _columnWidth
End Get
Set(ByVal Value As Integer)
If (_columnWidth.Equals(Value)) Then Return
_columnWidth = Value
OnPropertyChanged("ColumnWidth")
End Set
End Property
But in older versions the better version of OnPropertyChanged was inserted:
Visual BasicOnPropertyChanged(NameOf(ColumnWidth))
Hi Thomas,
Thank you for providing the code sample. I have reproduced this issue and we are working on it. We will notify you of our progress.