25 references to PropertyPath
PresentationFramework (15)
src\Framework\MS\Internal\Data\ClrBindingWorker.cs (2)
50path = new PropertyPath(String.Empty); 106path = new PropertyPath(pathString);
src\Framework\MS\Internal\Data\DisplayMemberTemplateSelector.cs (1)
65binding.Path = new PropertyPath(_displayMemberPath);
src\Framework\MS\Internal\Data\SortFieldComparer.cs (1)
136pp = new PropertyPath(sortFields[k].PropertyName);
src\Framework\System\Windows\Controls\Primitives\Selector.cs (2)
776binding.Path = new PropertyPath("/InnerText"); 780binding.Path = new PropertyPath(SelectedValuePath);
src\Framework\System\Windows\Controls\TextSearch.cs (2)
676binding.Path = new PropertyPath("/InnerText"); 680binding.Path = new PropertyPath(primaryTextPath);
src\Framework\System\Windows\Controls\TreeView.cs (2)
329binding.Path = new PropertyPath("/InnerText"); 333binding.Path = new PropertyPath(SelectedValuePath);
src\Framework\System\Windows\Data\Binding.cs (1)
233Path = new PropertyPath(path, (object[])null);
src\Framework\System\Windows\Data\BindingGroup.cs (1)
1441binding.Path = new PropertyPath(entry.PropertyName, originalBinding.Path.PathParameters);
src\Framework\System\Windows\Data\PropertyGroupDescription.cs (1)
253_propertyPath = !String.IsNullOrEmpty(propertyName) ? new PropertyPath(propertyName) : null;
src\Framework\System\Windows\PropertyPath.cs (1)
101: this(SingleStepPath, parameter)
src\Framework\System\Windows\Shell\WindowChrome.cs (1)
338Path = new PropertyPath("(SystemParameters." + bp.SystemParameterPropertyName + ")"),
System.Activities.Core.Presentation (5)
System\Activities\Core\Presentation\FlowchartDesigner.xaml.cs (2)
928labelBinding = new Binding { Source = linkModelItem, Path = new PropertyPath("TrueLabel") }; 932labelBinding = new Binding { Source = linkModelItem, Path = new PropertyPath("FalseLabel") };
System\Activities\Core\Presentation\IfElseDesigner.xaml.cs (1)
49b.Path = new PropertyPath("Condition");
System\Activities\Core\Presentation\StateContainerEditor.Utilities.cs (2)
67Path = new PropertyPath("DisplayName") 74Path = new PropertyPath("DisplayName"),
System.Activities.Presentation (5)
System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (2)
741contentPresenterFactory.SetBinding(ContentPresenter.TagProperty, new Binding() { Converter = ModelPropertyEntryToOwnerActivityConverter, ConverterParameter = false, Path = new PropertyPath("ParentProperty") }); 744binding.Bindings.Add(new Binding() { Path = new PropertyPath("Tag.Timestamp"), Mode = BindingMode.OneWay, RelativeSource = RelativeSource.Self });
System.Activities.Presentation\System\Activities\Presentation\Toolbox\TreeViewContainerStyleSelector.cs (2)
66automationIdBinding.Path = new PropertyPath("Header.ToolName"); 111automationIdBinding.Path = new PropertyPath("Header.CategoryName");
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (1)
866var hasErrorsBinding = new Binding() { Mode = BindingMode.OneWay, Path = new PropertyPath("HasErrors") };