36 writes to Path
PresentationFramework (27)
MS\Internal\Data\DisplayMemberTemplateSelector.cs (1)
63binding.Path = new PropertyPath(_displayMemberPath);
System\Windows\Controls\InkCanvas.cs (3)
648activeEditingModeBinding.Path = new PropertyPath(InkCanvas.ActiveEditingModeProperty); 2034strokes.Path = new PropertyPath(InkCanvas.StrokesProperty); 2201background.Path = new PropertyPath(InkCanvas.BackgroundProperty);
System\Windows\Controls\MenuItem.cs (1)
2154binding.Path = new PropertyPath(DefinitionBase.PrivateSharedSizeScopeProperty);
System\Windows\Controls\PopupControlService.cs (1)
457binding.Path = new PropertyPath(ToolTipService.ToolTipProperty);
System\Windows\Controls\Primitives\ScrollBar.cs (1)
906binding.Path = new PropertyPath(ContextMenu.PlacementTargetProperty);
System\Windows\Controls\Primitives\Selector.cs (2)
766binding.Path = new PropertyPath("/InnerText"); 770binding.Path = new PropertyPath(SelectedValuePath);
System\Windows\Controls\Primitives\TickBar.cs (3)
680binding.Path = new PropertyPath(source); 712binding.Path = new PropertyPath(Thumb.ActualWidthProperty); 716binding.Path = new PropertyPath(Thumb.ActualHeightProperty);
System\Windows\Controls\Primitives\ToolBarPanel.cs (1)
341binding.Path = new PropertyPath(ToolBar.OrientationProperty);
System\Windows\Controls\Primitives\Track.cs (2)
699binding.Path = new PropertyPath(source); 711binding.Path = new PropertyPath(source);
System\Windows\Controls\ScrollViewer.cs (1)
1343binding.Path = new PropertyPath(property);
System\Windows\Controls\StickyNote.cs (2)
1492stickyNoteInkEditingMode.Path = new PropertyPath(StickyNoteControl.InkEditingModeProperty); 1498stickyNoteIsKeyboardFocusWithin.Path = new PropertyPath(UIElement.IsKeyboardFocusWithinProperty);
System\Windows\Controls\TextSearch.cs (2)
663binding.Path = new PropertyPath("/InnerText"); 667binding.Path = new PropertyPath(primaryTextPath);
System\Windows\Controls\TreeView.cs (2)
328binding.Path = new PropertyPath("/InnerText"); 332binding.Path = new PropertyPath(SelectedValuePath);
System\Windows\Data\Binding.cs (1)
228Path = new PropertyPath(path, (object[])null);
System\Windows\Data\BindingGroup.cs (1)
1439binding.Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters);
System\Windows\FrameworkTemplate.cs (1)
830binding.Path = new PropertyPath(templateBindingExtension.Property);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6547bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Data.Binding)target).Path = (System.Windows.PropertyPath)value; };
System\Windows\Shell\WindowChrome.cs (1)
340Path = new PropertyPath($"(SystemParameters.{bp.SystemParameterPropertyName})"),
System.Windows.Controls.Ribbon (9)
Microsoft\Windows\Controls\Ribbon\RibbonContextMenu.cs (2)
455Binding isCheckedBinding = new Binding () { Source = contextMenu, Path = path }; 457Binding isMinimizedBinding = new Binding() { Source = contextMenu, Path = path };
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (2)
1473itemBinding.Path = new PropertyPath("/InnerText"); 1477itemBinding.Path = new PropertyPath(SelectedValuePath);
Microsoft\Windows\Controls\Ribbon\RibbonSeparator.cs (1)
119binding.Path = new PropertyPath(PrivateSharedSizeScopeProperty);
Microsoft\Windows\Controls\TextSearchInternal.cs (4)
688binding.Path = new PropertyPath("/InnerText"); 692binding.Path = new PropertyPath(primaryTextPath); 924binding.Path = new PropertyPath("/InnerText"); 928binding.Path = new PropertyPath(_bindingPath);
16 references to Path
PresentationFramework (15)
MS\Internal\Data\ClrBindingWorker.cs (2)
39PropertyPath path = ParentBinding.Path; 51if (ParentBinding.Path == null)
MS\Internal\TraceData.cs (2)
154if (binding.Path != null) 155traceBuilder.AppendFormat("Path={0}", binding.Path.Path );
System\Windows\Controls\DataGridHelper.cs (2)
695else if (binding.Path != null) 697return binding.Path.Path;
System\Windows\Controls\Primitives\Selector.cs (2)
592string path = bindingExpr.ParentBinding.Path.Path; 2182string path = bindingExpr.ParentBinding.Path.Path;
System\Windows\Data\BindingExpression.cs (5)
71PropertyPath pp = binding.Path; 348get { return ParentBinding.Path; } 416(binding.Path == null || String.IsNullOrEmpty(binding.Path.Path))) 665ParentBinding.Path.Path),
System\Windows\Data\BindingGroup.cs (1)
1439binding.Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6548bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Data.Binding)target).Path; };
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
1487string path = itemBinding.Path.Path;