3 instantiations of Path
PresentationFramework (3)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
582
Path marker = new
Path
();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7346
bamlType.DefaultConstructor = delegate() { return new System.Windows.Shapes.
Path
(); };
System\Windows\Markup\KnownTypes.cs (1)
1440
case KnownElements.Path: o = new System.Windows.Shapes.
Path
(); break;
60 references to Path
PresentationFramework (57)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (7)
364
private void SetMarkerTransform(
Path
marker, ITextPointer anchor, ITextPointer baseAnchor, int xScaleFactor)
580
private
Path
CreateMarker(Geometry geometry)
582
Path
marker = new Path();
588
marker.SetBinding(
Path
.StrokeProperty, markerStroke);
591
marker.SetBinding(
Path
.StrokeThicknessProperty, markerStrokeThickness);
1169
private
Path
_leftMarker; //The path element to visualize left bracket
1170
private
Path
_rightMarker; //The path element to visualize right bracket
System\Windows\Documents\FixedDocument.cs (2)
499
System.Windows.Shapes.
Path
p = element as System.Windows.Shapes.
Path
;
System\Windows\Documents\FixedDSBuilder.cs (1)
238
if (fen.uiElement is Glyphs || fen.uiElement is
Path
||
System\Windows\Documents\FixedHighlight.cs (2)
122
Path
p = _element as
Path
;
System\Windows\Documents\FixedPage.cs (4)
130
Path
path = _uiElementCollection[0] as
Path
;
1246
Path
path = ob as
Path
;
System\Windows\Documents\FixedPageStructure.cs (4)
350
Path
path = dependencyObject as
Path
;
586
Path
path = dependencyObject as
Path
;
System\Windows\Documents\FixedSOMElement.cs (2)
100
else if (uiElement is
Path
)
102
element = FixedSOMImage.Create(page, uiElement as
Path
, fixedNode);
System\Windows\Documents\FixedSOMImage.cs (1)
68
public static FixedSOMImage Create(FixedPage page,
Path
path, FixedNode fixedNode)
System\Windows\Documents\FixedSOMPageConstructor.cs (6)
253
obj is
Path
&& ((obj as
Path
).Fill is ImageBrush))
280
public void ProcessPath(
Path
path, Matrix transform)
374
Debug.Assert(obj is Image || obj is
Path
);
385
Path
path = obj as
Path
;
System\Windows\Documents\FixedTextBuilder.cs (11)
29
using Path=System.Windows.Shapes.
Path
;
809
System.Windows.Shapes.
Path
p = o as System.Windows.Shapes.
Path
;
969
else if (constructLines && elements.Current is
Path
)
971
pageStructure.PageConstructor.ProcessPath(elements.Current as
Path
, transform);
1299
else if (e is
Path
)
1301
g = ((
Path
)e).Data;
1413
if (!(child is
Path
) || ((
Path
)child).Fill is ImageBrush)
1421
if (navUri != null && ((
Path
)child).Data != null)
1425
Geometry geom = ((
Path
)child).Data;
System\Windows\Documents\FixedTextContainer.cs (1)
446
if (o is Image || o is
Path
)
System\Windows\Documents\FixedTextView.cs (7)
109
else if (e is
Path
)
111
Path
p = (
Path
)e;
226
else if (element is
Path
)
228
Path
path = (
Path
)element;
465
else if (element is Image || element is
Path
)
System\Windows\Documents\Hyperlink.cs (1)
896
if (fe != null && ((fe is
Path
) || (fe is Canvas) || (fe is Glyphs) || (fe is FixedPage)))
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
538
case 442: t = () => typeof(
Path
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
3164
Type type = typeof(System.Windows.Shapes.
Path
);
3165
DependencyProperty dp = System.Windows.Shapes.
Path
.DataProperty;
3167
this.GetXamlType(typeof(System.Windows.Shapes.
Path
)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7344
typeof(System.Windows.Shapes.
Path
),
System\Windows\Markup\KnownTypes.cs (2)
1854
return System.Windows.Shapes.
Path
.DataProperty;
5996
case KnownElements.Path: t = typeof(System.Windows.Shapes.
Path
); break;
System\Windows\Shapes\Path.cs (1)
50
typeof(
Path
),
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\RibbonTwoLineText.cs (3)
37
[TemplatePart(Name = "PART_Path", Type = typeof(
Path
))]
55
private
Path
_path;
265
_path = this.GetTemplateChild("PART_Path") as
Path
;