Hello,
In a previous post, I was trying to clone a PathGeometry wpf object without sucess. Then I read somewhere about the PathFigureCollectionConverter class. Then I decided tring it out. The ideia is to get an existing Path information (in a string), that represents the geometry (Path.Data.ToString()). So I'm doing the following:
This was get from my original object (that contains its geometry correctly) I can show it on screen properly and it was contructed adding points, lines and arcs objects programatically.
So, If I did not created that string, how can I be getting such exception.
Thanks in Advance,
Igor
Project Manager at INOVATIVA Tecnologia www.inovativatec.com
In a previous post, I was trying to clone a PathGeometry wpf object without sucess. Then I read somewhere about the PathFigureCollectionConverter class. Then I decided tring it out. The ideia is to get an existing Path information (in a string), that represents the geometry (Path.Data.ToString()). So I'm doing the following:
System.Windows.Shapes.Path myPath = new System.Windows.Shapes.Path(); myPath.Stroke = Brushes.Black; myPath.Stretch = Stretch.UniformToFill; myPath.ClipToBounds = false; PathGeometry pg = new PathGeometry(); myPath.Data = pg; pg.FillRule = FillRule.Nonzero; PathFigureCollectionConverter pfcc = new PathFigureCollectionConverter();When I run this code I get an FormatException on token 1. The string I'm trying to conver is : 'M0;100L100;100A50;50;0;1;0;100;50'
//This is where the exception occurs pg.Figures = (PathFigureCollection)pfcc.ConvertFromString(originalObject.PathGeometry.Data.ToString()); newObject.GeometryPath = myPath;
This was get from my original object (that contains its geometry correctly) I can show it on screen properly and it was contructed adding points, lines and arcs objects programatically.
So, If I did not created that string, how can I be getting such exception.
Thanks in Advance,
Igor
Project Manager at INOVATIVA Tecnologia www.inovativatec.com