14 references to PathParameters
PresentationFramework (14)
src\Framework\System\Windows\Data\BindingGroup.cs (1)
1441binding.Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters);
src\Framework\System\Windows\PropertyPath.cs (6)
558if (0 <= index && index < PathParameters.Count) 560object accessor = PathParameters[index]; 570throw new InvalidOperationException(SR.Get(SRID.PathParametersIndexOutOfRange, index, PathParameters.Count)); 725if (0 <= index && index < PathParameters.Count) 727object value = PathParameters[index]; 740throw new InvalidOperationException(SR.Get(SRID.PathParametersIndexOutOfRange, index, PathParameters.Count));
src\Framework\System\Windows\PropertyPathConverter.cs (2)
167if (path.PathParameters.Count == 0) 176Collection<object> parameters = path.PathParameters;
src\Framework\System\Windows\VisualStateManager.cs (5)
799(other._targetProperty.PathParameters.Count == _targetProperty.PathParameters.Count)) 803for (int i = 0, count = _targetProperty.PathParameters.Count; i < count; i++) 805if (other._targetProperty.PathParameters[i] != _targetProperty.PathParameters[i])