36 writes to Path
PresentationFramework (27)
MS\Internal\Data\DisplayMemberTemplateSelector.cs (1)
62Path = new PropertyPath(_displayMemberPath),
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\FrameworkTemplate.cs (1)
818Path = new PropertyPath(templateBindingExtension.Property),
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7029SetDelegate = delegate (object target, object value) { ((System.Windows.Data.Binding)target).Path = (System.Windows.PropertyPath)value; },
System\Windows\Shell\WindowChrome.cs (1)
336Path = new PropertyPath($"(SystemParameters.{bp.SystemParameterPropertyName})"),
System.Windows.Controls.Ribbon (9)
Microsoft\Windows\Controls\Ribbon\RibbonContextMenu.cs (2)
462Binding isCheckedBinding = new Binding () { Source = contextMenu, Path = path }; 467Path = path,
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (2)
1474itemBinding.Path = new PropertyPath("/InnerText"); 1478itemBinding.Path = new PropertyPath(SelectedValuePath);
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);
16 references to Path
PresentationFramework (15)
MS\Internal\Data\ClrBindingWorker.cs (2)
29PropertyPath path = ParentBinding.Path; 41if (ParentBinding.Path == null)
MS\Internal\TraceData.cs (2)
148if (binding.Path != null) 149traceBuilder.AppendFormat("Path={0}", binding.Path.Path );
System\Windows\Controls\DataGridHelper.cs (2)
688else if (binding.Path != null) 690return binding.Path.Path;
System\Windows\Controls\Primitives\Selector.cs (2)
579string path = bindingExpr.ParentBinding.Path.Path; 2170string path = bindingExpr.ParentBinding.Path.Path;
System\Windows\Data\BindingExpression.cs (5)
61PropertyPath pp = binding.Path; 335get { return ParentBinding.Path; } 403(binding.Path == null || String.IsNullOrEmpty(binding.Path.Path))) 652ParentBinding.Path.Path),
System\Windows\Data\BindingGroup.cs (1)
1411Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters),
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7030GetDelegate = delegate (object target) { return ((System.Windows.Data.Binding)target).Path; }
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
1488string path = itemBinding.Path.Path;