Ejemplo n.º 1
0
        private void OnSourcePropertyChanged(object sender, PropertyChangedEventArgs e)
        {
            if ((e.PropertyName == _propertyName || string.IsNullOrEmpty(e.PropertyName)) && (_prop != null || _field != null))
            {
                UpdateValue();

                IPropertyPathNode next = Next;
                if (next != null)
                {
                    next.SetSource(Value);
                }
            }
        }
Ejemplo n.º 2
0
 internal void Update(object source)
 {
     _source = source;
     _firstNode.SetSource(source);
 }