8 writes to XPath
PresentationFramework (8)
src\Framework\MS\Internal\Data\DisplayMemberTemplateSelector.cs (1)
50binding.XPath = _displayMemberPath;
src\Framework\MS\Internal\Data\LiveShapingItem.cs (1)
118binding.XPath = path;
src\Framework\System\Windows\Controls\ContentPresenter.cs (2)
75binding.XPath = "."; 760binding.XPath = ".";
src\Framework\System\Windows\Controls\Primitives\Selector.cs (1)
775binding.XPath = SelectedValuePath;
src\Framework\System\Windows\Controls\TextSearch.cs (1)
675binding.XPath = primaryTextPath;
src\Framework\System\Windows\Controls\TreeView.cs (1)
328binding.XPath = SelectedValuePath;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
8114bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Data.Binding)target).XPath = (System.String)value; };
13 references to XPath
PresentationFramework (13)
src\Framework\MS\Internal\Data\ClrBindingWorker.cs (1)
43if (ParentBinding.XPath != null)
src\Framework\MS\Internal\Data\XmlBindingWorker.cs (1)
42_xpath = ParentBinding.XPath;
src\Framework\MS\Internal\TraceData.cs (2)
157else if (binding.XPath != null) 158traceBuilder.AppendFormat("XPath={0}", binding.XPath );
src\Framework\System\Windows\Controls\DataGridHelper.cs (2)
690if (!string.IsNullOrEmpty(binding.XPath)) 692return binding.XPath;
src\Framework\System\Windows\Controls\Primitives\Selector.cs (1)
757bool usesXml = (binding.XPath != null);
src\Framework\System\Windows\Controls\TreeView.cs (1)
313bool usesXml = (binding.XPath != null);
src\Framework\System\Windows\Data\Binding.cs (1)
785if (!treeContextIsRequired && HasValue(Feature.XPath) && XPath.IndexOf(':') >= 0)
src\Framework\System\Windows\Data\BindingExpression.cs (3)
78if (String.IsNullOrEmpty(binding.XPath)) 88TraceData.Identify(binding.XPath), 420if (bindExpr.IsReflective && binding.XPath == null &&
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
8115bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Data.Binding)target).XPath; };