3 instantiations of Path
PresentationFramework (3)
src\Framework\MS\Internal\Annotations\Component\MArkedHighlightComponent.cs (1)
601Path marker = new Path();
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7342bamlType.DefaultConstructor = delegate() { return new System.Windows.Shapes.Path(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1441case KnownElements.Path: o = new System.Windows.Shapes.Path(); break;
49 references to Path
PresentationFramework (49)
src\Framework\MS\Internal\Annotations\Component\MArkedHighlightComponent.cs (7)
379private void SetMarkerTransform(Path marker, ITextPointer anchor, ITextPointer baseAnchor, int xScaleFactor) 598private Path CreateMarker(Geometry geometry) 601Path marker = new Path(); 607marker.SetBinding(Path.StrokeProperty, markerStroke); 610marker.SetBinding(Path.StrokeThicknessProperty, markerStrokeThickness); 1193private Path _leftMarker; //The path element to visualize left bracket 1194private Path _rightMarker; //The path element to visualize right bracket
src\Framework\System\Windows\Documents\FixedDocument.cs (2)
525System.Windows.Shapes.Path p = element as System.Windows.Shapes.Path;
src\Framework\System\Windows\Documents\FixedDSBuilder.cs (1)
245if (fen.uiElement is Glyphs || fen.uiElement is Path ||
src\Framework\System\Windows\Documents\FixedHighlight.cs (2)
125Path p = _element as Path;
src\Framework\System\Windows\Documents\FixedSOMElement.cs (2)
104else if (uiElement is Path) 106element = FixedSOMImage.Create(page, uiElement as Path, fixedNode);
src\Framework\System\Windows\Documents\FixedSOMImage.cs (1)
73public static FixedSOMImage Create(FixedPage page, Path path, FixedNode fixedNode)
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (6)
258obj is Path && ((obj as Path).Fill is ImageBrush)) 285public void ProcessPath(Path path, Matrix transform) 382Debug.Assert(obj is Image || obj is Path); 393Path path = obj as Path;
src\Framework\System\Windows\Documents\FixedTextBuilder.cs (11)
33using Path=System.Windows.Shapes.Path; 829System.Windows.Shapes.Path p = o as System.Windows.Shapes.Path; 993else if (constructLines && elements.Current is Path) 995pageStructure.PageConstructor.ProcessPath(elements.Current as Path, transform); 1326else if (e is Path) 1328g = ((Path)e).Data; 1441if (!(child is Path) || ((Path)child).Fill is ImageBrush) 1449if (navUri != null && ((Path)child).Data != null) 1453Geometry geom = ((Path)child).Data;
src\Framework\System\Windows\Documents\FixedTextContainer.cs (1)
453if (o is Image || o is Path)
src\Framework\System\Windows\Documents\FixedTextView.cs (7)
116else if (e is Path) 118Path p = (Path)e; 234else if (element is Path) 236Path path = (Path)element; 474else if (element is Image || element is Path)
src\Framework\System\Windows\Documents\Hyperlink.cs (1)
949if (fe != null && ((fe is Path) || (fe is Canvas) || (fe is Glyphs) || (fe is FixedPage)))
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
534case 442: t = () => typeof(Path); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
3156Type type = typeof(System.Windows.Shapes.Path); 3157DependencyProperty dp = System.Windows.Shapes.Path.DataProperty; 3159this.GetXamlType(typeof(System.Windows.Shapes.Path)), // DeclaringType
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7340typeof(System.Windows.Shapes.Path),
src\Framework\System\Windows\Markup\KnownTypes.cs (2)
1855return System.Windows.Shapes.Path.DataProperty; 5986case KnownElements.Path: t = typeof(System.Windows.Shapes.Path); break;
src\Framework\System\Windows\Shapes\Path.cs (1)
55typeof(Path),