Beispiel #1
0
        /// <summary>
        /// Unhooks from the change notifications for the binding's associated dependency property, if applicable.
        /// </summary>
        private void UnhookDependencyProperty()
        {
            if (dpropReference == null)
            {
                return;
            }

            DependencyProperty.UnregisterChangeNotification(dataSource, dpropReference, this);
        }