Click or drag to resize

PropertyChangedAlerter Class

A class responsible for implementing the INotifyPropertyChanged interface and helper functions.
Inheritance Hierarchy

Namespace:  butterflow_ui
Assembly:  butterflow-ui (in butterflow-ui.exe) Version: 1.0.2.31734 (1.0.0.0)
Syntax
C#
public abstract class PropertyChangedAlerter : INotifyPropertyChanged

The PropertyChangedAlerter type exposes the following members.

Constructors
  NameDescription
Protected methodPropertyChangedAlerter
Initializes a new instance of the PropertyChangedAlerter class
Top
Methods
  NameDescription
Public methodAddConstantCallProperty
Adds a property that will always be called when any property is updated..
Protected methodOnAllPropertiesChanged
Executes when all properties are changed and should be updated.
Protected methodCode exampleOnPropertyChanged
Executes the property changed action. This alerts subscribers to its change in value.
Top
Events
  NameDescription
Public eventPropertyChanged
Occurs when a property value changes.
Top
Fields
  NameDescription
Private fieldalwaysCall
A list of properties to always call as updated. Generally used for composite properties.
Top
See Also