13 references to MIL_PEN_CAP
PresentationCore (13)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\wgx_core_types.cs (3)
241internal MIL_PEN_CAP StartLineCap; 242internal MIL_PEN_CAP EndLineCap; 243internal MIL_PEN_CAP DashCap;
System\Windows\Media\Pen.cs (10)
81private MIL_PEN_CAP GetInternalCapType(PenLineCap cap) 83Debug.Assert((MIL_PEN_CAP)PenLineCap.Flat == MIL_PEN_CAP.MilPenCapFlat); 84Debug.Assert((MIL_PEN_CAP)PenLineCap.Square == MIL_PEN_CAP.MilPenCapSquare); 85Debug.Assert((MIL_PEN_CAP)PenLineCap.Round == MIL_PEN_CAP.MilPenCapRound); 86Debug.Assert((MIL_PEN_CAP)PenLineCap.Triangle == MIL_PEN_CAP.MilPenCapTriangle); 88return (MIL_PEN_CAP)cap;