36 writes to Path
PresentationFramework (27)
MS\Internal\Data\DisplayMemberTemplateSelector.cs (1)
63Path = new PropertyPath(_displayMemberPath),
System\Windows\Controls\InkCanvas.cs (3)
647Path = new PropertyPath(InkCanvas.ActiveEditingModeProperty), 2035Path = new PropertyPath(InkCanvas.StrokesProperty), 2204Path = new PropertyPath(InkCanvas.BackgroundProperty),
System\Windows\Controls\MenuItem.cs (1)
2138Path = new PropertyPath(DefinitionBase.PrivateSharedSizeScopeProperty),
System\Windows\Controls\PopupControlService.cs (1)
450Path = new PropertyPath(ToolTipService.ToolTipProperty),
System\Windows\Controls\Primitives\ScrollBar.cs (1)
895Path = new PropertyPath(ContextMenu.PlacementTargetProperty),
System\Windows\Controls\Primitives\Selector.cs (2)
755binding.Path = new PropertyPath("/InnerText"); 759binding.Path = new PropertyPath(SelectedValuePath);
System\Windows\Controls\Primitives\TickBar.cs (3)
667Path = new PropertyPath(source) 702binding.Path = new PropertyPath(Thumb.ActualWidthProperty); 706binding.Path = new PropertyPath(Thumb.ActualHeightProperty);
System\Windows\Controls\Primitives\ToolBarPanel.cs (1)
330Path = new PropertyPath(ToolBar.OrientationProperty)
System\Windows\Controls\Primitives\Track.cs (2)
683Path = new PropertyPath(source) 697Path = new PropertyPath(source)
System\Windows\Controls\ScrollViewer.cs (1)
1336Path = new PropertyPath(property)
System\Windows\Controls\StickyNote.cs (2)
1442Path = new PropertyPath(StickyNoteControl.InkEditingModeProperty), 1450Path = 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)
203Path = new PropertyPath(path, (object[])null);
System\Windows\Data\BindingGroup.cs (1)
1412Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters),
System\Windows\FrameworkTemplate.cs (1)
820Path = new PropertyPath(templateBindingExtension.Property),
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7030SetDelegate = 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)
463Binding isCheckedBinding = new Binding () { Source = contextMenu, Path = path }; 468Path = path,
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (2)
1475itemBinding.Path = new PropertyPath("/InnerText"); 1479itemBinding.Path = new PropertyPath(SelectedValuePath);
Microsoft\Windows\Controls\Ribbon\RibbonSeparator.cs (1)
117Path = new PropertyPath(PrivateSharedSizeScopeProperty),
Microsoft\Windows\Controls\TextSearchInternal.cs (4)
685binding.Path = new PropertyPath("/InnerText"); 689binding.Path = new PropertyPath(primaryTextPath); 918binding.Path = new PropertyPath("/InnerText"); 922binding.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)
580string path = bindingExpr.ParentBinding.Path.Path; 2171string path = bindingExpr.ParentBinding.Path.Path;
System\Windows\Data\BindingExpression.cs (5)
62PropertyPath pp = binding.Path; 336get { return ParentBinding.Path; } 404(binding.Path == null || String.IsNullOrEmpty(binding.Path.Path))) 653ParentBinding.Path.Path),
System\Windows\Data\BindingGroup.cs (1)
1412Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters),
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7031GetDelegate = delegate (object target) { return ((System.Windows.Data.Binding)target).Path; }
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
1489string path = itemBinding.Path.Path;