17 references to PathParameters
PresentationFramework (14)
System\Windows\Data\BindingGroup.cs (1)
1411Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters),
System\Windows\PropertyPath.cs (6)
554if (0 <= index && index < PathParameters.Count) 556object accessor = PathParameters[index]; 566throw new InvalidOperationException(SR.Format(SR.PathParametersIndexOutOfRange, index, PathParameters.Count)); 721if (0 <= index && index < PathParameters.Count) 723object value = PathParameters[index]; 736throw new InvalidOperationException(SR.Format(SR.PathParametersIndexOutOfRange, index, PathParameters.Count));
System\Windows\PropertyPathConverter.cs (2)
142if (path.PathParameters.Count == 0) 151Collection<object> parameters = path.PathParameters;
System\Windows\VisualStateManager.cs (5)
736(other._targetProperty.PathParameters.Count == _targetProperty.PathParameters.Count)) 740for (int i = 0, count = _targetProperty.PathParameters.Count; i < count; i++) 742if (other._targetProperty.PathParameters[i] != _targetProperty.PathParameters[i])
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\RibbonContextMenu.cs (3)
458path.PathParameters.Add(ContextMenuService.PlacementTargetProperty); 459path.PathParameters.Add(RibbonControlService.RibbonProperty); 460path.PathParameters.Add(Ribbon.IsMinimizedProperty);