17 references to PathParameters
PresentationFramework (14)
System\Windows\Data\BindingGroup.cs (1)
1434binding.Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters);
System\Windows\PropertyPath.cs (6)
555if (0 <= index && index < PathParameters.Count) 557object accessor = PathParameters[index]; 567throw new InvalidOperationException(SR.Format(SR.PathParametersIndexOutOfRange, index, PathParameters.Count)); 722if (0 <= index && index < PathParameters.Count) 724object value = PathParameters[index]; 737throw new InvalidOperationException(SR.Format(SR.PathParametersIndexOutOfRange, index, PathParameters.Count));
System\Windows\PropertyPathConverter.cs (2)
146if (path.PathParameters.Count == 0) 155Collection<object> parameters = path.PathParameters;
System\Windows\VisualStateManager.cs (5)
737(other._targetProperty.PathParameters.Count == _targetProperty.PathParameters.Count)) 741for (int i = 0, count = _targetProperty.PathParameters.Count; i < count; i++) 743if (other._targetProperty.PathParameters[i] != _targetProperty.PathParameters[i])
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\RibbonContextMenu.cs (3)
449path.PathParameters.Add(ContextMenuService.PlacementTargetProperty); 450path.PathParameters.Add(RibbonControlService.RibbonProperty); 451path.PathParameters.Add(Ribbon.IsMinimizedProperty);