Constructor PropertyChangeNotifier
PropertyChangeNotifier(DependencyObject, string)
Initializes a new instance of the PropertyChangeNotifier
class with specified parameters.
public PropertyChangeNotifier(DependencyObject propertySource, string path)
Parameters
propertySource
DependencyObjectThe DependencyObject which property's change we need to listen to.
path
stringThe 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
DependencyObjectThe DependencyObject which property's change we need to listen to.
property
DependencyPropertyThe 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
DependencyObjectThe DependencyObject which property's change we need to listen to.
property
PropertyPathThe 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
DependencyObjectThe DependencyObject which property's change we need to listen to.
path
stringThe path which change we need to listen to.
pinToSource
boolPin 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
DependencyObjectThe DependencyObject which property's change we need to listen to.
property
DependencyPropertyThe DependencyProperty which change we need to listen to.
pinToSource
boolPin 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
DependencyObjectThe DependencyObject which property's change we need to listen to.
property
PropertyPathThe PropertyPath which change we need to listen to.
pinToSource
boolPin the lifetime of our object to the propertySource object.