Table of Contents

Constructor PropertyChangeNotifier

Namespace
Alternet.Editor.Wpf
Assembly
Alternet.Editor.Wpf.v9.dll

PropertyChangeNotifier(DependencyObject, string)

Initializes a new instance of the PropertyChangeNotifier class with specified parameters.

public PropertyChangeNotifier(DependencyObject propertySource, string path)

Parameters

propertySource DependencyObject

The DependencyObject which property's change we need to listen to.

path string

The path which change we need to listen to.

PropertyChangeNotifier(DependencyObject, DependencyProperty)

Initializes a new instance of the PropertyChangeNotifier class with specified parameters.

public PropertyChangeNotifier(DependencyObject propertySource, DependencyProperty property)

Parameters

propertySource DependencyObject

The DependencyObject which property's change we need to listen to.

property DependencyProperty

The DependencyProperty which change we need to listen to.

PropertyChangeNotifier(DependencyObject, PropertyPath)

Initializes a new instance of the PropertyChangeNotifier class with specified parameters.

public PropertyChangeNotifier(DependencyObject propertySource, PropertyPath property)

Parameters

propertySource DependencyObject

The DependencyObject which property's change we need to listen to.

property PropertyPath

The PropertyPath which change we need to listen to.

PropertyChangeNotifier(DependencyObject, string, bool)

Initializes a new instance of the PropertyChangeNotifier class with specified parameters.

public PropertyChangeNotifier(DependencyObject propertySource, string path, bool pinToSource)

Parameters

propertySource DependencyObject

The DependencyObject which property's change we need to listen to.

path string

The path which change we need to listen to.

pinToSource bool

Pin the lifetime of our object to the propertySource object.

PropertyChangeNotifier(DependencyObject, DependencyProperty, bool)

Initializes a new instance of the PropertyChangeNotifier class with specified parameters.

public PropertyChangeNotifier(DependencyObject propertySource, DependencyProperty property, bool pinToSource)

Parameters

propertySource DependencyObject

The DependencyObject which property's change we need to listen to.

property DependencyProperty

The DependencyProperty which change we need to listen to.

pinToSource bool

Pin the lifetime of our object to the propertySource object.

PropertyChangeNotifier(DependencyObject, PropertyPath, bool)

Initializes a new instance of the PropertyChangeNotifier class with specified parameters.

public PropertyChangeNotifier(DependencyObject propertySource, PropertyPath property, bool pinToSource)

Parameters

propertySource DependencyObject

The DependencyObject which property's change we need to listen to.

property PropertyPath

The PropertyPath which change we need to listen to.

pinToSource bool

Pin the lifetime of our object to the propertySource object.