Class NotifyPropertyChangedBase
Base class for types that implement INotifyPropertyChanged, providing helper methods for raising property change notifications.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Core
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public abstract class NotifyPropertyChangedBase : INotifyPropertyChanged
Constructors
NotifyPropertyChangedBase()
Initializes a new instance of the NotifyPropertyChangedBase class, providing a foundation for implementing property change notifications.
Declaration
protected NotifyPropertyChangedBase()
Methods
OnPropertyChanged(PropertyChangedEventArgs)
Raises the PropertyChanged event.
Declaration
protected virtual void OnPropertyChanged(PropertyChangedEventArgs args)
Parameters
|
System.ComponentModel.PropertyChangedEventArgs
args
The System.ComponentModel.PropertyChangedEventArgs instance containing the event data. |
OnPropertyChanged(String)
Raises the PropertyChanged event for the specified property name.
Declaration
protected void OnPropertyChanged(string propertyName)
Parameters
|
System.String
propertyName
Name of the property. |
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
|
System.ComponentModel.PropertyChangedEventHandler
|