3 instantiations of Path
PresentationFramework (3)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
570Path marker = new Path
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8084DefaultConstructor = delegate () { return new System.Windows.Shapes.Path(); },
System\Windows\Markup\KnownTypes.cs (1)
1433case KnownElements.Path: o = new System.Windows.Shapes.Path(); break;
56 references to Path
PresentationFramework (53)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (7)
357private void SetMarkerTransform(Path marker, ITextPointer anchor, ITextPointer baseAnchor, int xScaleFactor) 568private Path CreateMarker(Geometry geometry) 570Path marker = new Path 580marker.SetBinding(Path.StrokeProperty, markerStroke); 585marker.SetBinding(Path.StrokeThicknessProperty, markerStrokeThickness); 1163private Path _leftMarker; //The path element to visualize left bracket 1164private Path _rightMarker; //The path element to visualize right bracket
System\Windows\Documents\FixedDocument.cs (2)
487System.Windows.Shapes.Path p = element as System.Windows.Shapes.Path;
System\Windows\Documents\FixedDSBuilder.cs (1)
229if (fen.uiElement is Glyphs || fen.uiElement is Path ||
System\Windows\Documents\FixedHighlight.cs (2)
116Path p = _element as Path;
System\Windows\Documents\FixedPage.cs (4)
123Path path = _uiElementCollection[0] as Path; 1239Path path = ob as Path;
System\Windows\Documents\FixedPageStructure.cs (4)
343Path path = dependencyObject as Path; 579Path path = dependencyObject as Path;
System\Windows\Documents\FixedSOMElement.cs (2)
96else if (uiElement is Path) 98element = FixedSOMImage.Create(page, uiElement as Path, fixedNode);
System\Windows\Documents\FixedSOMImage.cs (1)
65public static FixedSOMImage Create(FixedPage page, Path path, FixedNode fixedNode)
System\Windows\Documents\FixedSOMPageConstructor.cs (6)
249obj is Path && ((obj as Path).Fill is ImageBrush)) 276public void ProcessPath(Path path, Matrix transform) 370Debug.Assert(obj is Image || obj is Path); 381Path path = obj as Path;
System\Windows\Documents\FixedTextBuilder.cs (11)
14using Path = System.Windows.Shapes.Path; 802System.Windows.Shapes.Path p = o as System.Windows.Shapes.Path; 959else if (constructLines && elements.Current is Path) 961pageStructure.PageConstructor.ProcessPath(elements.Current as Path, transform); 1289else if (e is Path) 1291g = ((Path)e).Data; 1403if (!(child is Path) || ((Path)child).Fill is ImageBrush) 1411if (navUri != null && ((Path)child).Data != null) 1415Geometry geom = ((Path)child).Data;
System\Windows\Documents\FixedTextContainer.cs (1)
428if (o is Image || o is Path)
System\Windows\Documents\FixedTextView.cs (3)
99else if (e is Path p) 213else if (element is Path path) 452else 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)
535case 442: t = () => typeof(Path); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
3275Type type = typeof(System.Windows.Shapes.Path); 3276DependencyProperty dp = System.Windows.Shapes.Path.DataProperty; 3278this.GetXamlType(typeof(System.Windows.Shapes.Path)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8081typeof(System.Windows.Shapes.Path),
System\Windows\Markup\KnownTypes.cs (2)
1847return System.Windows.Shapes.Path.DataProperty; 5989case KnownElements.Path: t = typeof(System.Windows.Shapes.Path); break;
System\Windows\Shapes\Path.cs (1)
42typeof(Path),
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\RibbonTwoLineText.cs (3)
33[TemplatePart(Name = "PART_Path", Type = typeof(Path))] 51private Path _path; 261_path = this.GetTemplateChild("PART_Path") as Path;