27 references to Path
PresentationFramework (27)
src\Framework\MS\Internal\Data\PropertyPathWorker.cs (1)
137string s = _parent.Path;
src\Framework\MS\Internal\TraceData.cs (1)
156traceBuilder.AppendFormat("Path={0}", binding.Path.Path );
src\Framework\System\Windows\Controls\DataGridHelper.cs (1)
696return binding.Path.Path;
src\Framework\System\Windows\Controls\Primitives\Selector.cs (2)
602string path = bindingExpr.ParentBinding.Path.Path; 2227string path = bindingExpr.ParentBinding.Path.Path;
src\Framework\System\Windows\Data\BindingExpression.cs (3)
76string path = (pp != null) ? pp.Path : String.Empty; 421(binding.Path == null || String.IsNullOrEmpty(binding.Path.Path))) 666ParentBinding.Path.Path));
src\Framework\System\Windows\Media\Animation\Storyboard.cs (11)
477throw new InvalidOperationException(SR.Get(SRID.Storyboard_PropertyPathMustPointToDependencyProperty, currentPropertyPath.Path )); 691throw new InvalidOperationException(SR.Get(SRID.Storyboard_PropertyPathObjectNotFound, AccessorName(path, i-1), path.Path )); 698throw new InvalidOperationException(SR.Get(SRID.Storyboard_PropertyPathPropertyNotFound, path.Path )); 725throw new InvalidOperationException(SR.Get(SRID.Storyboard_PropertyPathFrozenCheckFailed, AccessorName(path, i-1), path.Path, intermediateFreezable.GetType().ToString() )); 731throw new InvalidOperationException(SR.Get(SRID.Storyboard_ImmutableTargetNotSupported, path.Path)); 746throw new InvalidOperationException(SR.Get(SRID.Storyboard_PropertyPathMustPointToDependencyObject, AccessorName(path, i-1), path.Path)); 751throw new InvalidOperationException(SR.Get(SRID.Storyboard_PropertyPathMustPointToDependencyProperty, path.Path )); 756throw new InvalidOperationException(SR.Get(SRID.Storyboard_PropertyPathSealedCheckFailed, intermediateDP.Name, path.Path, intermediateDO)); 761throw new InvalidOperationException(SR.Get(SRID.Storyboard_PropertyPathIncludesNonAnimatableProperty, path.Path, intermediateDP.Name)); 844throw new InvalidOperationException(SR.Get(SRID.Storyboard_PropertyPathUnresolved, path.Path)); 875throw new InvalidOperationException(SR.Get(SRID.Storyboard_ImmutableTargetNotSupported, path.Path));
src\Framework\System\Windows\PropertyPath.cs (2)
372_arySVI = parser.Parse(Path); 378detail = Path;
src\Framework\System\Windows\PropertyPathConverter.cs (2)
170return path.Path; 175string originalPath = path.Path;
src\Framework\System\Windows\VisualStateManager.cs (4)
798(other._targetProperty.Path == _targetProperty.Path) && 829int targetPropertyHash = (_targetProperty != null && _targetProperty.Path != null) ? _targetProperty.Path.GetHashCode() : 0;