■ PathGeometryConverter 클래스의 ConvertFromInvariantString 메소드를 사용해 패스 태그 구문을 Geometry 객체로 변환하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 |
using Microsoft.Maui.Controls.Shapes; string pathTag = "M13.908992,16.207977 L32.000049,16.207977 32.000049,31.999985 13.908992,30.109983Z"; Geometry geometry = new PathGeometryConverter().ConvertFromInvariantString(pathTag) as Geometry; |