17 references to PathParameters
PresentationFramework (14)
System\Windows\Data\BindingGroup.cs (1)
1439binding.Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters);
System\Windows\PropertyPath.cs (6)
558if (0 <= index && index < PathParameters.Count) 560object accessor = PathParameters[index]; 570throw new InvalidOperationException(SR.Format(SR.PathParametersIndexOutOfRange, index, PathParameters.Count)); 725if (0 <= index && index < PathParameters.Count) 727object value = PathParameters[index]; 740throw new InvalidOperationException(SR.Format(SR.PathParametersIndexOutOfRange, index, PathParameters.Count));
System\Windows\PropertyPathConverter.cs (2)
152if (path.PathParameters.Count == 0) 161Collection<object> parameters = path.PathParameters;
System\Windows\VisualStateManager.cs (5)
742(other._targetProperty.PathParameters.Count == _targetProperty.PathParameters.Count)) 746for (int i = 0, count = _targetProperty.PathParameters.Count; i < count; i++) 748if (other._targetProperty.PathParameters[i] != _targetProperty.PathParameters[i])
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\RibbonContextMenu.cs (3)
451path.PathParameters.Add(ContextMenuService.PlacementTargetProperty); 452path.PathParameters.Add(RibbonControlService.RibbonProperty); 453path.PathParameters.Add(Ribbon.IsMinimizedProperty);