I want to generate a WPF Path object in Code.
In XAML I can do this:
<Path Data="M 100,200 C 100,25 400,350 400,175 H 280">
How can I do the same in Code?
Path path = new Path();
Path.Data = "foo"; //This won't accept a string as path data.
Is there a class/Method available that converts the string with PathData to PathGeometry or similar?
Surely somehow the XAML gets parsed and the Data-string converted?