36 writes to Path
PresentationFramework (27)
MS\Internal\Data\DisplayMemberTemplateSelector.cs (1)
60binding.Path = new PropertyPath(_displayMemberPath);
System\Windows\Controls\InkCanvas.cs (3)
636activeEditingModeBinding.Path = new PropertyPath(InkCanvas.ActiveEditingModeProperty); 2022strokes.Path = new PropertyPath(InkCanvas.StrokesProperty); 2189background.Path = new PropertyPath(InkCanvas.BackgroundProperty);
System\Windows\Controls\MenuItem.cs (1)
2144binding.Path = new PropertyPath(DefinitionBase.PrivateSharedSizeScopeProperty);
System\Windows\Controls\PopupControlService.cs (1)
447binding.Path = new PropertyPath(ToolTipService.ToolTipProperty);
System\Windows\Controls\Primitives\ScrollBar.cs (1)
890binding.Path = new PropertyPath(ContextMenu.PlacementTargetProperty);
System\Windows\Controls\Primitives\Selector.cs (2)
757binding.Path = new PropertyPath("/InnerText"); 761binding.Path = new PropertyPath(SelectedValuePath);
System\Windows\Controls\Primitives\TickBar.cs (3)
666binding.Path = new PropertyPath(source); 698binding.Path = new PropertyPath(Thumb.ActualWidthProperty); 702binding.Path = new PropertyPath(Thumb.ActualHeightProperty);
System\Windows\Controls\Primitives\ToolBarPanel.cs (1)
332binding.Path = new PropertyPath(ToolBar.OrientationProperty);
System\Windows\Controls\Primitives\Track.cs (2)
688binding.Path = new PropertyPath(source); 700binding.Path = new PropertyPath(source);
System\Windows\Controls\ScrollViewer.cs (1)
1335binding.Path = new PropertyPath(property);
System\Windows\Controls\StickyNote.cs (2)
1476stickyNoteInkEditingMode.Path = new PropertyPath(StickyNoteControl.InkEditingModeProperty); 1482stickyNoteIsKeyboardFocusWithin.Path = new PropertyPath(UIElement.IsKeyboardFocusWithinProperty);
System\Windows\Controls\TextSearch.cs (2)
651binding.Path = new PropertyPath("/InnerText"); 655binding.Path = new PropertyPath(primaryTextPath);
System\Windows\Controls\TreeView.cs (2)
323binding.Path = new PropertyPath("/InnerText"); 327binding.Path = new PropertyPath(SelectedValuePath);
System\Windows\Data\Binding.cs (1)
220Path = new PropertyPath(path, (object[])null);
System\Windows\Data\BindingGroup.cs (1)
1434binding.Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters);
System\Windows\FrameworkTemplate.cs (1)
821binding.Path = new PropertyPath(templateBindingExtension.Property);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6545bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Data.Binding)target).Path = (System.Windows.PropertyPath)value; };
System\Windows\Shell\WindowChrome.cs (1)
337Path = new PropertyPath($"(SystemParameters.{bp.SystemParameterPropertyName})"),
System.Windows.Controls.Ribbon (9)
Microsoft\Windows\Controls\Ribbon\RibbonContextMenu.cs (2)
453Binding isCheckedBinding = new Binding () { Source = contextMenu, Path = path }; 455Binding isMinimizedBinding = new Binding() { Source = contextMenu, Path = path };
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (2)
1471itemBinding.Path = new PropertyPath("/InnerText"); 1475itemBinding.Path = new PropertyPath(SelectedValuePath);
Microsoft\Windows\Controls\Ribbon\RibbonSeparator.cs (1)
116binding.Path = new PropertyPath(PrivateSharedSizeScopeProperty);
Microsoft\Windows\Controls\TextSearchInternal.cs (4)
683binding.Path = new PropertyPath("/InnerText"); 687binding.Path = new PropertyPath(primaryTextPath); 919binding.Path = new PropertyPath("/InnerText"); 923binding.Path = new PropertyPath(_bindingPath);
16 references to Path
PresentationFramework (15)
MS\Internal\Data\ClrBindingWorker.cs (2)
30PropertyPath path = ParentBinding.Path; 42if (ParentBinding.Path == null)
MS\Internal\TraceData.cs (2)
149if (binding.Path != null) 150traceBuilder.AppendFormat("Path={0}", binding.Path.Path );
System\Windows\Controls\DataGridHelper.cs (2)
689else if (binding.Path != null) 691return binding.Path.Path;
System\Windows\Controls\Primitives\Selector.cs (2)
583string path = bindingExpr.ParentBinding.Path.Path; 2173string path = bindingExpr.ParentBinding.Path.Path;
System\Windows\Data\BindingExpression.cs (5)
62PropertyPath pp = binding.Path; 339get { return ParentBinding.Path; } 407(binding.Path == null || String.IsNullOrEmpty(binding.Path.Path))) 656ParentBinding.Path.Path),
System\Windows\Data\BindingGroup.cs (1)
1434binding.Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6546bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Data.Binding)target).Path; };
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
1485string path = itemBinding.Path.Path;