3 instantiations of Path
PresentationFramework (3)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
574Path marker = new Path
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8085DefaultConstructor = delegate () { return new System.Windows.Shapes.Path(); },
System\Windows\Markup\KnownTypes.cs (1)
1434case KnownElements.Path: o = new System.Windows.Shapes.Path(); break;
56 references to Path
PresentationFramework (53)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (7)
358private void SetMarkerTransform(Path marker, ITextPointer anchor, ITextPointer baseAnchor, int xScaleFactor) 572private Path CreateMarker(Geometry geometry) 574Path marker = new Path 584marker.SetBinding(Path.StrokeProperty, markerStroke); 589marker.SetBinding(Path.StrokeThicknessProperty, markerStrokeThickness); 1167private Path _leftMarker; //The path element to visualize left bracket 1168private Path _rightMarker; //The path element to visualize right bracket
System\Windows\Documents\FixedDocument.cs (2)
488System.Windows.Shapes.Path p = element as System.Windows.Shapes.Path;
System\Windows\Documents\FixedDSBuilder.cs (1)
230if (fen.uiElement is Glyphs || fen.uiElement is Path ||
System\Windows\Documents\FixedHighlight.cs (2)
117Path p = _element as Path;
System\Windows\Documents\FixedPage.cs (4)
124Path path = _uiElementCollection[0] as Path; 1240Path path = ob as Path;
System\Windows\Documents\FixedPageStructure.cs (4)
344Path path = dependencyObject as Path; 580Path path = dependencyObject as Path;
System\Windows\Documents\FixedSOMElement.cs (2)
97else if (uiElement is Path) 99element = FixedSOMImage.Create(page, uiElement as Path, fixedNode);
System\Windows\Documents\FixedSOMImage.cs (1)
66public static FixedSOMImage Create(FixedPage page, Path path, FixedNode fixedNode)
System\Windows\Documents\FixedSOMPageConstructor.cs (6)
250obj is Path && ((obj as Path).Fill is ImageBrush)) 277public void ProcessPath(Path path, Matrix transform) 371Debug.Assert(obj is Image || obj is Path); 382Path path = obj as Path;
System\Windows\Documents\FixedTextBuilder.cs (11)
15using Path = System.Windows.Shapes.Path; 803System.Windows.Shapes.Path p = o as System.Windows.Shapes.Path; 960else if (constructLines && elements.Current is Path) 962pageStructure.PageConstructor.ProcessPath(elements.Current as Path, transform); 1290else if (e is Path) 1292g = ((Path)e).Data; 1404if (!(child is Path) || ((Path)child).Fill is ImageBrush) 1412if (navUri != null && ((Path)child).Data != null) 1416Geometry geom = ((Path)child).Data;
System\Windows\Documents\FixedTextContainer.cs (1)
429if (o is Image || o is Path)
System\Windows\Documents\FixedTextView.cs (3)
100else if (e is Path p) 214else if (element is Path path) 453else if (element is Image || element is Path)
System\Windows\Documents\Hyperlink.cs (1)
891if (fe != null && ((fe is Path) || (fe is Canvas) || (fe is Glyphs) || (fe is FixedPage)))
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
536case 442: t = () => typeof(Path); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
3276Type type = typeof(System.Windows.Shapes.Path); 3277DependencyProperty dp = System.Windows.Shapes.Path.DataProperty; 3279this.GetXamlType(typeof(System.Windows.Shapes.Path)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8082typeof(System.Windows.Shapes.Path),
System\Windows\Markup\KnownTypes.cs (2)
1848return System.Windows.Shapes.Path.DataProperty; 5990case KnownElements.Path: t = typeof(System.Windows.Shapes.Path); break;
System\Windows\Shapes\Path.cs (1)
43typeof(Path),
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\RibbonTwoLineText.cs (3)
34[TemplatePart(Name = "PART_Path", Type = typeof(Path))] 52private Path _path; 262_path = this.GetTemplateChild("PART_Path") as Path;