Replies: 3 comments
-
|
FYI - prioritising
|
Beta Was this translation helpful? Give feedback.
-
|
I've looked into this further and can confirm it's a bug in PropertyChangedBase has 2 overloads of the method
The bug is in the This was also reported in #49. |
Beta Was this translation helpful? Give feedback.
-
|
See #51 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Is it possible to force use of
RaisePropertyChangedOrChangingNameType.String?The concrete use case: using
PropertyChanged.SourceGenerator(PCSG) withCaliburn.Micro(CM)PropertyChangedBase.OnPropertyChanged(PropertyChangedEventArgs)as non-virtual (see also: PropertyChangedBase)PropertyChangedBase.OnPropertyChangedIn this scenario, is it possible to have PCSG default to using the virtual method:
PropertyChangedBase.NotifyOfPropertyChange(string propertyName)instead ofOnPropertyChanged? Maybe in the 'matching' comparison, 'matching' virtual methods could take precedence over 'matching' non-virtual methods?I suppose
PropertyChangedBase.Set<T>could also be considered in place of the generated property setter implementation.Beta Was this translation helpful? Give feedback.
All reactions