Catel.MVVM.ViewModelBase.OnViewModelPropertyChanged C# (CSharp) Method

OnViewModelPropertyChanged() protected method

Called when a property has changed for a view model type that the current view model is interested in. This can be accomplished by decorating the view model with the InterestedInAttribute.
protected OnViewModelPropertyChanged ( IViewModel viewModel, string propertyName ) : void
viewModel IViewModel The view model.
propertyName string Name of the property.
return void
        protected virtual void OnViewModelPropertyChanged(IViewModel viewModel, string propertyName)
        {
        }