40 instantiations of PropertyPath
PresentationFramework (31)
MS\Internal\Data\ClrBindingWorker.cs (2)
38path = new PropertyPath(String.Empty); 94path = new PropertyPath(pathString);
MS\Internal\Data\DisplayMemberTemplateSelector.cs (1)
62Path = new PropertyPath(_displayMemberPath),
MS\Internal\Data\SortFieldComparer.cs (1)
125pp = new PropertyPath(sortFields[k].PropertyName);
System\Windows\Controls\InkCanvas.cs (3)
646Path = new PropertyPath(InkCanvas.ActiveEditingModeProperty), 2034Path = new PropertyPath(InkCanvas.StrokesProperty), 2203Path = new PropertyPath(InkCanvas.BackgroundProperty),
System\Windows\Controls\MenuItem.cs (1)
2137Path = new PropertyPath(DefinitionBase.PrivateSharedSizeScopeProperty),
System\Windows\Controls\PopupControlService.cs (1)
449Path = new PropertyPath(ToolTipService.ToolTipProperty),
System\Windows\Controls\Primitives\ScrollBar.cs (1)
894Path = new PropertyPath(ContextMenu.PlacementTargetProperty),
System\Windows\Controls\Primitives\Selector.cs (2)
754binding.Path = new PropertyPath("/InnerText"); 758binding.Path = new PropertyPath(SelectedValuePath);
System\Windows\Controls\Primitives\TickBar.cs (3)
666Path = new PropertyPath(source) 701binding.Path = new PropertyPath(Thumb.ActualWidthProperty); 705binding.Path = new PropertyPath(Thumb.ActualHeightProperty);
System\Windows\Controls\Primitives\ToolBarPanel.cs (1)
329Path = new PropertyPath(ToolBar.OrientationProperty)
System\Windows\Controls\Primitives\Track.cs (2)
674Path = new PropertyPath(source) 688Path = new PropertyPath(source)
System\Windows\Controls\ScrollViewer.cs (1)
1335Path = new PropertyPath(property)
System\Windows\Controls\StickyNote.cs (2)
1441Path = new PropertyPath(StickyNoteControl.InkEditingModeProperty), 1449Path = new PropertyPath(UIElement.IsKeyboardFocusWithinProperty),
System\Windows\Controls\TextSearch.cs (2)
650binding.Path = new PropertyPath("/InnerText"); 654binding.Path = new PropertyPath(primaryTextPath);
System\Windows\Controls\TreeView.cs (2)
322binding.Path = new PropertyPath("/InnerText"); 326binding.Path = new PropertyPath(SelectedValuePath);
System\Windows\Data\Binding.cs (1)
202Path = new PropertyPath(path, (object[])null);
System\Windows\Data\BindingGroup.cs (1)
1411Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters),
System\Windows\Data\PropertyGroupDescription.cs (1)
247_propertyPath = !String.IsNullOrEmpty(propertyName) ? new PropertyPath(propertyName) : null;
System\Windows\FrameworkTemplate.cs (1)
818Path = new PropertyPath(templateBindingExtension.Property),
System\Windows\PropertyPathConverter.cs (1)
99return new PropertyPath((string)source, typeDescriptorContext);
System\Windows\Shell\WindowChrome.cs (1)
336Path = new PropertyPath($"(SystemParameters.{bp.SystemParameterPropertyName})"),
System.Windows.Controls.Ribbon (9)
Microsoft\Windows\Controls\Ribbon\RibbonContextMenu.cs (1)
457PropertyPath path = new PropertyPath("(0).(1).(2)");
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (2)
1474itemBinding.Path = new PropertyPath("/InnerText"); 1478itemBinding.Path = new PropertyPath(SelectedValuePath);
Microsoft\Windows\Controls\Ribbon\RibbonGroup.cs (1)
1319opacityAnimation.SetValue(Storyboard.TargetPropertyProperty, new PropertyPath("Opacity"));
Microsoft\Windows\Controls\Ribbon\RibbonSeparator.cs (1)
116Path = new PropertyPath(PrivateSharedSizeScopeProperty),
Microsoft\Windows\Controls\TextSearchInternal.cs (4)
684binding.Path = new PropertyPath("/InnerText"); 688binding.Path = new PropertyPath(primaryTextPath); 915binding.Path = new PropertyPath("/InnerText"); 919binding.Path = new PropertyPath(_bindingPath);
47 references to PropertyPath
PresentationFramework (46)
MS\Internal\Data\ClrBindingWorker.cs (3)
29PropertyPath path = ParentBinding.Path; 52private PropertyPath PrepareXmlBinding(PropertyPath path)
MS\Internal\Data\PropertyPathWorker.cs (11)
28internal PropertyPathWorker(PropertyPath path) 33internal PropertyPathWorker(PropertyPath path, ClrBindingWorker host, bool isDynamic, DataBindEngine engine) 40private PropertyPathWorker(PropertyPath path, DataBindEngine engine) 687PropertyPath.DowncastAccessor(_arySVS[k].info, out oldDP, out oldPI, out oldPD, out oldDOA); 858PropertyPath.DowncastAccessor(svs.info, out newDP, out newPI, out newPD, out newDOA); 976if (PropertyPath.IsStaticProperty(_arySVS[level].info)) 1066bool cacheAccessor = !PropertyPath.IsParameterIndex(SVI[k].name, out index); 1076if (PropertyPath.IsStaticProperty(svs.info)) 1130PropertyPath.DowncastAccessor(info, out dp, out pi1, out pd, out doa); 1288if (PropertyPath.IsStaticProperty(info)) 1834private PropertyPath _parent;
MS\Internal\Data\SortFieldComparer.cs (2)
115PropertyPath pp; 140internal PropertyPath info;
System\Windows\Data\Binding.cs (3)
297public PropertyPath Path 681internal void UsePath(PropertyPath path) 814private PropertyPath _ppath;
System\Windows\Data\BindingExpression.cs (2)
61PropertyPath pp = binding.Path; 333internal PropertyPath Path
System\Windows\Data\PropertyGroupDescription.cs (1)
266private PropertyPath _propertyPath;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
584case 491: t = () => typeof(PropertyPath); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
7023typeof(System.Windows.PropertyPath), // type 7029SetDelegate = delegate (object target, object value) { ((System.Windows.Data.Binding)target).Path = (System.Windows.PropertyPath)value; },
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8791typeof(System.Windows.PropertyPath),
System\Windows\Markup\KnownTypes.cs (1)
6038case KnownElements.PropertyPath: t = typeof(System.Windows.PropertyPath); break;
System\Windows\Media\Animation\Storyboard.cs (11)
153DependencyProperty.RegisterAttached("TargetProperty", typeof(PropertyPath), typeof(Storyboard)); 161public static void SetTargetProperty(DependencyObject element, PropertyPath path) 171public static PropertyPath GetTargetProperty(DependencyObject element) 174return (PropertyPath)element.GetValue(TargetPropertyProperty); 376PropertyPath parentPropertyPath, 385PropertyPath currentPropertyPath = parentPropertyPath; 410PropertyPath propertyPath = (PropertyPath)currentTimeline.GetValue(TargetPropertyProperty); 675internal static void VerifyPathIsAnimatable(PropertyPath path) 766private static string AccessorName( PropertyPath path, int index ) 807PropertyPath path, AnimationClock animationClock, HandoffBehavior handoffBehavior, Int64 layer )
System\Windows\PropertyPathConverter.cs (6)
102throw new ArgumentException(SR.Format(SR.CannotConvertType, source.GetType().FullName, typeof(PropertyPath))); 133throw new ArgumentException(SR.Format(SR.CannotConvertType, typeof(PropertyPath), destinationType.FullName)); 136PropertyPath path = value as PropertyPath; 139throw new ArgumentException(SR.Format(SR.UnexpectedParameterType, value.GetType(), typeof(PropertyPath)), nameof(value)); 197PropertyPath.DowncastAccessor(pathPart, out dp, out pi, out pd, out doa);
System\Windows\VisualStateManager.cs (2)
493PropertyPath path = Storyboard.GetTargetProperty(source); 773private PropertyPath _targetProperty;
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonContextMenu.cs (1)
457PropertyPath path = new PropertyPath("(0).(1).(2)");