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