When writing a custom binding element, you will notice two constructors on the abstract base class:protected BindingElement()protected BindingElement(BindingElement elementToBeCloned)The usage of the first (default) constructor is straightforward. The second one, which takes a BindingElement is a little more subtle. Its purpose is to facilitate proper implementations of BindingElement.Clone(). The recommended pattern is that all
read more »
Be the first to post a Comment!