Hi
Code Rush for Roslyn
VS 2015 rc.
Standard Coderush unloaded (NOT uninstalled)
Working in WPF project in VB.net
When working in a class that itself inherits a class that implements INotifyPropertyChanged templates to expand into properties are not adding the additional logic for RaisePropertyChanged.
Thank you for pointing out this problem to us. We will fix it soon.
Presumably You'll also alter it to take advantage of the new NameOf feature so that :
Public Property ActingAsLookup As Boolean
Get
Return _actingAsLookup
End Get
Set(ByVal Value As Boolean)
If (_actingAsLookup = Value) Then Return
_actingAsLookup = Value
RaisePropertyChanged("ActingAsLookup")
End Set
End Property
Would become;
Public Property ActingAsLookup As Boolean
Get
Return _actingAsLookup
End Get
Set(ByVal Value As Boolean)
If (_actingAsLookup = Value) Then Return
_actingAsLookup = Value
RaisePropertyChanged(NameOf(ActingAsLookup))
End Set
End Property
regards
Dom
Yes, Dom. Of course we will use new syntax features where they are available.