11 writes to XPath
PresentationFramework (8)
MS\Internal\Data\DisplayMemberTemplateSelector.cs (1)
45binding.XPath = _displayMemberPath;
MS\Internal\Data\LiveShapingItem.cs (1)
112binding.XPath = path;
System\Windows\Controls\ContentPresenter.cs (2)
64binding.XPath = "."; 749binding.XPath = ".";
System\Windows\Controls\Primitives\Selector.cs (1)
756binding.XPath = SelectedValuePath;
System\Windows\Controls\TextSearch.cs (1)
650binding.XPath = primaryTextPath;
System\Windows\Controls\TreeView.cs (1)
322binding.XPath = SelectedValuePath;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
8154bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Data.Binding)target).XPath = (System.String)value; };
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
1470itemBinding.XPath = SelectedValuePath;
Microsoft\Windows\Controls\TextSearchInternal.cs (2)
682binding.XPath = primaryTextPath; 918binding.XPath = _bindingPath;
13 references to XPath
PresentationFramework (13)
MS\Internal\Data\ClrBindingWorker.cs (1)
32if (ParentBinding.XPath != null)
MS\Internal\Data\XmlBindingWorker.cs (1)
33_xpath = ParentBinding.XPath;
MS\Internal\TraceData.cs (2)
151else if (binding.XPath != null) 152traceBuilder.AppendFormat("XPath={0}", binding.XPath );
System\Windows\Controls\DataGridHelper.cs (2)
685if (!string.IsNullOrEmpty(binding.XPath)) 687return binding.XPath;
System\Windows\Controls\Primitives\Selector.cs (1)
738bool usesXml = (binding.XPath != null);
System\Windows\Controls\TreeView.cs (1)
307bool usesXml = (binding.XPath != null);
System\Windows\Data\Binding.cs (1)
772if (!treeContextIsRequired && HasValue(Feature.XPath) && XPath.Contains(':'))
System\Windows\Data\BindingExpression.cs (3)
65if (String.IsNullOrEmpty(binding.XPath)) 76TraceData.Identify(binding.XPath), 406if (bindExpr.IsReflective && binding.XPath == null &&
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
8155bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Data.Binding)target).XPath; };