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