<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>StringToPathGeometry Release Rss Feed</title><link>http://www.codeplex.com/StringToPathGeometry/Release/ProjectReleases.aspx</link><description>StringToPathGeometry Release Rss Description</description><item><title>UPDATED RELEASE: 2nd Release (Jun 19, 2008)</title><link>http://www.codeplex.com/StringToPathGeometry/Release/ProjectReleases.aspx?ReleaseId=14515</link><description>&lt;div&gt;
2nd release of StringToPathGeometryConverter.&lt;br&gt;Implimented Conversion and BackConversion functionality.&lt;br&gt;Implemented IValueConverter interface to enable usage in data binding.&lt;br&gt;Also imiplimented support for FillRule syntax.&lt;br&gt; &lt;br&gt;To use, add reference to PathConverter.DLL in your project.&lt;br&gt; &lt;br&gt;Sample in attached project&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Thu, 19 Jun 2008 08:52:39 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: 2nd Release (Jun 19, 2008) 20080619085239A</guid></item><item><title>RELEASED: 2nd Release (Jun 19, 2008)</title><link>http://www.codeplex.com/StringToPathGeometry/Release/ProjectReleases.aspx?ReleaseId=14515</link><description>&lt;div&gt;
2nd release of StringToPathGeometryConverter.&lt;br&gt;Implimented Conversion and BackConversion functionality.&lt;br&gt;Implemented IValueConverter interface to enable usage in data binding.&lt;br&gt;Also imiplimented support for FillRule syntax.&lt;br&gt; &lt;br&gt;To use, add reference to PathConverter.DLL in your project.&lt;br&gt; &lt;br&gt;Sample in attached project&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Thu, 19 Jun 2008 08:52:39 GMT</pubDate><guid isPermaLink="false">RELEASED: 2nd Release (Jun 19, 2008) 20080619085239A</guid></item><item><title>CREATED RELEASE: 2nd Release (Jun 19, 2008)</title><link>http://www.codeplex.com/StringToPathGeometry/Release/ProjectReleases.aspx?ReleaseId=14515</link><description>&lt;div&gt;
2nd of StringToPathGeometryConverter.&lt;br&gt;Implimented Conversion and BackConversion functionality.&lt;br&gt;Also implemented IValueConverter interface to enable usage in data binding.&lt;br&gt; &lt;br&gt;To use, add reference to PathConverter.DLL in your project.&lt;br&gt; &lt;br&gt;Sample in attached project&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Thu, 19 Jun 2008 08:16:13 GMT</pubDate><guid isPermaLink="false">CREATED RELEASE: 2nd Release (Jun 19, 2008) 20080619081613A</guid></item><item><title>UPDATED RELEASE: Initial Release (Jun 18, 2008)</title><link>http://www.codeplex.com/StringToPathGeometry/Release/ProjectReleases.aspx?ReleaseId=14491</link><description>&lt;div&gt;
This is first working prototype of StringToPathGeometryConverter.&lt;br&gt; &lt;br&gt;To use, add reference to PathConverter.DLL in your project.&lt;br&gt;Sample code:&lt;br&gt;            //String path to draw Rectange&lt;br&gt;            string pathStr = &amp;quot;M 50,50 L 50,100 L 100,100 L 100,50 L 50,50 Z&amp;quot;;&lt;br&gt; &lt;br&gt;            //Use StringToPathGeometryConverter&lt;br&gt;            PathConverter.StringToPathGeometryConverter conv = new PathConverter.StringToPathGeometryConverter();&lt;br&gt;            PathGeometry pathGeometry = conv.Convert(pathStr);&lt;br&gt; &lt;br&gt;            //Create Path and use defined geometry with it.&lt;br&gt;            System.Windows.Shapes.Path path = new System.Windows.Shapes.Path();&lt;br&gt;            path.SetValue(System.Windows.Shapes.Path.DataProperty, pathGeometry);&lt;br&gt;            //Define additional properies for created path&lt;br&gt;            path.SetValue(System.Windows.Shapes.Path.NameProperty, &amp;quot;SamplePath&amp;quot;);&lt;br&gt;            path.SetValue(Canvas.LeftProperty, 10.0);&lt;br&gt;            path.SetValue(Canvas.TopProperty, 10.0);&lt;br&gt;            SolidColorBrush fillColorBrush = new SolidColorBrush(Colors.Red);&lt;br&gt;            SolidColorBrush strokeColorBrush = new SolidColorBrush(Colors.Black);&lt;br&gt;            path.Fill = fillColorBrush;&lt;br&gt;            path.Stroke = strokeColorBrush;&lt;br&gt;            path.Width = 100;&lt;br&gt;            path.Height = 100;&lt;br&gt;            //Given &amp;quot;Root&amp;quot; as Canvas object in your UserControl, add created Path to it&lt;br&gt;            Root.Children.Add(path);&lt;br&gt; &lt;br&gt;See another eample in attached sample.&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Wed, 18 Jun 2008 07:58:40 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: Initial Release (Jun 18, 2008) 20080618075840A</guid></item><item><title>UPDATED RELEASE: Initial Release (Jun 18, 2008)</title><link>http://www.codeplex.com/StringToPathGeometry/Release/ProjectReleases.aspx?ReleaseId=14491</link><description>&lt;div&gt;
This is first working prototype of StringToPathGeometryConverter.&lt;br&gt; &lt;br&gt;To use, add reference to PathConverter.DLL in your project.&lt;br&gt;Sample code:&lt;br&gt;            //String path to draw Rectange&lt;br&gt;            string pathStr = &amp;quot;M 50,50 L 50,100 L 100,100 L 100,50 L 50,50 Z&amp;quot;;&lt;br&gt; &lt;br&gt;            //Use StringToPathGeometryConverter&lt;br&gt;            PathConverter.StringToPathGeometryConverter conv = new PathConverter.StringToPathGeometryConverter();&lt;br&gt;            PathGeometry pathGeometry = conv.Convert(pathStr);&lt;br&gt; &lt;br&gt;            //Create Path and use defined geometry with it.&lt;br&gt;            System.Windows.Shapes.Path path = new System.Windows.Shapes.Path();&lt;br&gt;            path.SetValue(System.Windows.Shapes.Path.DataProperty, pathGeometry);&lt;br&gt;            //Define additional properies for created path&lt;br&gt;            path.SetValue(System.Windows.Shapes.Path.NameProperty, &amp;quot;SamplePath&amp;quot;);&lt;br&gt;            path.SetValue(Canvas.LeftProperty, 10.0);&lt;br&gt;            path.SetValue(Canvas.TopProperty, 10.0);&lt;br&gt;            SolidColorBrush fillColorBrush = new SolidColorBrush(Colors.Red);&lt;br&gt;            SolidColorBrush strokeColorBrush = new SolidColorBrush(Colors.Black);&lt;br&gt;            path.Fill = fillColorBrush;&lt;br&gt;            path.Stroke = strokeColorBrush;&lt;br&gt;            path.Width = 100;&lt;br&gt;            path.Height = 100;&lt;br&gt;            //Given &amp;quot;Root&amp;quot; as Canvas object in your UserControl, add created Path to it&lt;br&gt;            Root.Children.Add(path);&lt;br&gt; &lt;br&gt;See another eample in attached sample.&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Wed, 18 Jun 2008 07:58:12 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: Initial Release (Jun 18, 2008) 20080618075812A</guid></item></channel></rss>