DescriptorBase
Base class for all descriptors used for handling the logic for property changed notifications.
Definition
Namespace:Telerik.Windows.Data
Assembly:Telerik.Windows.Data.dll
Syntax:
public class DescriptorBase : InheritanceContextPropagator, INotifyPropertyChanged, ISuspendNotifications
Inheritance: objectInheritanceContextPropagatorDescriptorBase
Derived Classes:
Implements:
Inherited Members
Constructors
public DescriptorBase()
Properties
Gets or sets a value indicating whether change notifications are suspended.
public bool NotificationsSuspended { get; }
True if notifications are suspended, otherwise, false.
Implements:
Methods
Raises the PropertyChanged event.
protected virtual void OnPropertyChanged(PropertyChangedEventArgs args)
The PropertyChangedEventArgs instance containing the event data.
Calls OnPropertyChanged(PropertyChangedEventArgs)
creating a new instance of PropertyChangedEventArgs with given propertyName.
protected void OnPropertyChanged(string propertyName)
Name of the property that is changed.
Resumes the notifications.
public void ResumeNotifications()
Implements:
Suspends the notifications.
public void SuspendNotifications()
Implements:
Events
Occurs when a property changes.
public event PropertyChangedEventHandler PropertyChanged
Implements: